000
08.04.2008, 12:46 Uhr
Bulew
|
Hallo Leute, Ich muss bis zur nächsten Woche ein Programm fertig bekommen, ich schaffe es aber nicht alleine, ich brauche Eure Hilfe.......
C++: |
// Eiskunstlauf 01.04.08
#include <stdio.h> #include <conio.h> #include <math.h> #include <time.h> #include <stdlib.h> #include <iostream> using namespace std;
//= Variable =======================================================
struct Rohform
{ int Struktur; float ANote[7]; float BNote[7]; float AGesamt; float BGesamt; float Total; }Daten[20];
//= Prototypen ===================================================== void Note (void); void Eingabe (void); void Ausgabe (void); void Exit (void); void menue (void);
//= Main ===========================================================
void main (void) { menue (); }
void menue (void) { for(;;) { char Typ; system("cls"); printf("Auswahl:<1>: Eingabe<2>: Ausgabe<0>: Ende"); Typ=getch(); switch(Typ) { case'1':Eingabe();break; case'2':Ausgabe();break; case'0':exit(1); } }
} // Eingabe---------------------------------------- void Eingabe (void) { int Anzahl; printf("Anzahl Paare"); cin>>Anzahl;
for(int i=0; i<Anzahl; i++) { printf(" Bitte ANote Paar %i",i+1); for(int j=0;j<7;j++) { printf("%i.Note:",j+1); cin>>Daten[i].ANote[j]; } } for(i=0; i<Anzahl; i++) { printf("Bitte BNote Paar %i", i+1); for(int j=0; j<7; j++) { printf("%i.Note:",j+1); cin>>Daten[i].ANote[j]; } } Daten[i].Struktur=1;
} //Ausgang------------------------------------- void Ausgang(void) { for(int i=0; i<20; i++) if(Daten [i]. Struktur==1) { for(int j=0; i<7; j++) { printf("%f",Daten[i]. ANote[j]); } }
for(i=0; i<20; i++) if(Daten [i]. Struktur==1 ) { for(int j=0; j<7; j++) { printf("%f",Daten [i]. BNote [j]); } } Daten[i].Struktur=1; }
|
Dieser Post wurde am 08.04.2008 um 13:50 Uhr von FloSoft editiert. |