000
25.05.2009, 14:55 Uhr
~CppNoob
Gast
|
und zwar möchte ich eine auswahl machen, das ganze sieht so aus:
Code: |
#include <iostream>
using namespace std;
int main() { // Hier wird festgelegt wie groß die variablen sind int zahl1 = 0; int zahl2 = 0; int zahl3 = 0; int auswahl = 0;
//AUSWAHL DIALOGE cout << "Was möchtest du berechnen? " << endl; cout << " plus[1], minus[2], <empty, <emtpy> " << endl; cin >> auswahl;
// Zahlangabe zahl1(Eingabe) + zahl2(3) {if (auswahl==1) cout << "-------Plusrechner-------" << endl; cout << "Bitte erste Zahl eingeben" << endl; cin >> zahl1;
cout << "Bitte zweite Zahl eingeben" << endl; cin >> zahl2;
zahl3 = zahl1 + zahl2; cout << " " << endl;
cout << "RECHNUNG: " << zahl1 << " + " << zahl2 << " = " << zahl3 << endl;
system("PAUSE"); return 0;}
{if (auswahl==2) cout << "Momentan noch leer" << endl; system("Pause"); return 0;} }
|
Leider funktioniert das nicht so ganz, wäre nett wenn mir jemand helfen könnte. |