000
20.05.2006, 10:22 Uhr
~anna
Gast
|
Hallo! Vor kurzem habe ich schon mal einen Beitrag gepostet, und wieder habe ich das gleiche Problem, nach dem ausführen des Programms kommt eine Fehlermeldung, dass ein Fehler aufgetreten ist, und das Programm beendet werden muss. Kann Mir mal bitte jemand erklären, wo mein Fehler liegt? Danke!
C++: |
#include <iomanip> #include <iostream> #include <conio.h> using namespace std;
void eingabe(void) { int i, wert[i], max;
for (i=0;i<=4;i++) { cout <<"bitte geben sie 4 Funktioneswert eine"; cin >>wert[i]; }
for (i=0; i<=4;i++) { if (wert[i]>max) { max=wert[i]; } } cout <<"\n"<<max; }
int main() { cout <<"Willkommen"; eingabe(); getch(); return 0; }
|
Dieser Post wurde am 20.05.2006 um 10:25 Uhr von mike editiert. |