pes-forever
Urgestein
hey,
mein code
#include <iostream.h>
#include <iomanip.h>
int main()
{
int sprung [4][15], a, b, sprung1, sprung2;
for (a=0;a<15;a++)
{
for (b=0;b<4;b++)
{
sprung[a]=0;
cout<<sprung [a];
}
cout<<endl;
}
cout<<endl<<endl;
cout<<"Bitte geben Sie jeweils Sprung1 und Sprung2 eines Springers ein:\n";
for (a=0;a<15;a++)
{
cin>>sprung1;
cin>>sprung2;
sprung[0][a]=a+1;
sprung[1][a]=sprung1;
sprung[2][a]=sprung2;
sprung[3][a]=sprung1+sprung2;
}
for (a=0;a<15;a++)
{
for (b=0;b<4;b++)
{
cout<<setw(6)<<sprung[a];
}
cout<<endl;
}
getchar();
}
wie mache ich das nun, nachdem ich am Anfang die 0len ausgebe den Bildschirm zu köschen?
Ich wei0 noch was mit clrsc, finde aber per google nicht das passende das funktioniert.
Zweites Problem
WIe kann ich am Ende das "ergebniss" der skispringer ordnen?
mein code
#include <iostream.h>
#include <iomanip.h>
int main()
{
int sprung [4][15], a, b, sprung1, sprung2;
for (a=0;a<15;a++)
{
for (b=0;b<4;b++)
{
sprung[a]=0;
cout<<sprung [a];
}
cout<<endl;
}
cout<<endl<<endl;
cout<<"Bitte geben Sie jeweils Sprung1 und Sprung2 eines Springers ein:\n";
for (a=0;a<15;a++)
{
cin>>sprung1;
cin>>sprung2;
sprung[0][a]=a+1;
sprung[1][a]=sprung1;
sprung[2][a]=sprung2;
sprung[3][a]=sprung1+sprung2;
}
for (a=0;a<15;a++)
{
for (b=0;b<4;b++)
{
cout<<setw(6)<<sprung[a];
}
cout<<endl;
}
getchar();
}
wie mache ich das nun, nachdem ich am Anfang die 0len ausgebe den Bildschirm zu köschen?
Ich wei0 noch was mit clrsc, finde aber per google nicht das passende das funktioniert.
Zweites Problem
WIe kann ich am Ende das "ergebniss" der skispringer ordnen?