000
06.04.2004, 22:55 Uhr
obazda
|
Hallo,
hab ein sehr peinliches Problem, muss aber trotzdem posten :-) Der Code unten soll einfach die Summe aus zwei eingegebenen Zahlen bilden, bringt mir aber für 3 und 4 nicht die Summe 7, sondern 1076071313 ...und das bei allen anderen Summanden auch, die ich eingeben will.
C++: |
int fSumme (int intfirst_summand, int intsecond_summand); //Funktionsprototyp oder Deklaration
int main(int argc, char *argv[]) { int intfirst_summand; int intsecond_summand; int intsumme;
cout << "Bitte 1. Summanden eingeben: "; cin >> intfirst_summand; cout << "Bitte 2. Summanden eingeben: "; intsumme = fSumme(intfirst_summand, intsecond_summand); cin >> intsecond_summand; cout << intsumme; return EXIT_SUCCESS; }
int fSumme (int intfirst_summand, int intsecond_summand) {
return intfirst_summand + intsecond_summand; }
|
Danke, Udo
P.S.KDEvelop 2.1.5 auf SuSE 8.2
Bearbeitung von Pablo: |
Bitte, CPP Tags benutzen
|
Dieser Post wurde am 06.04.2004 um 23:26 Uhr von Pablo editiert. |