Undefined
By: calc | Date: Oct 6 2009 15:41 | Format: C++ | Expires: never | Size: 1.73 KB | Hits: 864
- #inc lude <iostream>
- #include <cmath>
- using namespace std;
- int main ()
- {
- Schleife1:
- int zeichen;
- cout << " " << endl;
- cout << "JOES TASCHENRECHNER GT3000 LOWBOB EDITION" << endl;
- cout << "Built 06.10.09" << endl;
- cout << " " << endl;
- cout << "ntRechenarten:";
- cout << "nt------------------------";
- cout << "nt(1) Addition (a+b)";
- cout << "nt(2) Subtraktion (a-b)";
- cout << "nt(3) Multiplikation (a*b)";
- cout << "nt(4) Division (a/b)";
- cout << "nt ";
- cout << "nt(5) Potenzrechnung (a^b)";
- cout << "nt(6) Prozentrechnung (a/100*b)";
- cout << "nt------------------------";
- cout << " " << endl;
- cout << " " << endl;
- cout << " " << endl;
- cout << "Deine Auswahl: ";
- cin >> zeichen;
- if ((zeichen >= 1) && (zeichen <=6))
- {
- cout << " " << endl;
- Zahl1:
- int eins;
- cout << "Erste Zahl: ";
- cin >> eins;
- cout << " " << endl;
- if (eins>=1)
- {
- Zahl2:
- int zwei;
- cout << "Zweite Zahl: ";
- cin >> zwei;
- cout << " " << endl;
- if (zwei>=1)
- {
- int ergebnis;
- if (zeichen==1)
- {
- ergebnis = eins+zwei;
- cout << eins << " + " << zwei << " = " << ergebnis << endl;
- }
- if (zeichen==2)
- {
- ergebnis = eins-zwei;
- cout << eins << " - " << zwei << " = " << ergebnis << endl;
- }
- if (zeichen==3)
- {
- ergebnis = eins*zwei;
- cout << eins << " * " << zwei << " = " << ergebnis << endl;
- }
- if (zeichen==4)
- {
- ergebnis = eins/zwei;
- cout << eins << " / " << zwei << " = " << ergebnis << endl;
- }
- if (zeichen==5)
- {
- ergebnis = pow(eins, zwei)
- cout << eins << " ^ " << zwei << " = " << ergebnis << endl;
- }
- if (zeichen==6)
- {
- ergebnis = eins/100*zwei;
- cout << eins << " / " << "100 " << " * " << zwei << " = " << ergebnis << endl;
- }
- }
- else goto Zahl2;
- }
- else goto Zahl1;
- }
- else goto Schleife1;
- system ("pause");
- }
Latest pastes
1 hours ago
11 hours ago
1 days ago
2 days ago
2 days ago