OldSchoolHack

Registrieren / Anmelden Deutsch

Stimmt der SourceCode?

icon Thema: Stimmt der SourceCode?

Anmeldungsdatum: Okt 2008

Beiträge: 12

Hab mich mal bissle drangehockt aber i-wie will es nicht funktionieren!
Könnt ihr mir vllt. sagen was falsch sein könnte?

TEXT Code:
  1. // Test.cpp: Hauptprojektdatei.
  2. #include <iostream>
  3.  
  4. #include <math.h>
  5.  
  6. using namespace std;
  7.  
  8.  
  9.  
  10. int main()
  11.  
  12. {
  13.  
  14. char i;
  15.  
  16. int eingabe = -1;
  17.  
  18. long double zahl1,zahl2;
  19.  
  20.  
  21.  
  22. if (eingabe !=0)
  23.  
  24. {
  25.  
  26. do{
  27.  
  28. system(\"CLS\");
  29.  
  30. cout << \"nt <--------Taschenrechner------->\"<< endl;
  31.  
  32. cout << \"nt 0.Programm beenden <0> \";
  33.  
  34. cout << \"nt 1.Addieren <1> \";
  35.  
  36. cout << \"nt 2.Subtrahieren <2> \" ;
  37.  
  38. cout << \"nt 3.Multiplizieren <3> \";
  39.  
  40. cout << \"nt 4.Dividieren <4> \";
  41.  
  42. cout << \"nt 5.Potenz <5> \";
  43.  
  44. cout << \"nt 6.Wurzel <6> \";
  45.  
  46. cout << \"nt <---Copyright-by-C4ponnEEee--->\";
  47.  
  48. cout << endl;
  49.  
  50. cout << \"nt Auswahl : \";
  51.  
  52. cin >> eingabe;
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. switch(eingabe)
  61.  
  62. {
  63.  
  64. case 1: cout << \"nt Geben sie Zahl eins ein : \";
  65.  
  66. cin >> zahl1;
  67.  
  68. cout << \"nt Geben sie Zahl zwei ein : \";
  69.  
  70. cin >> zahl2;
  71.  
  72. cout << \"nt Addition : \";
  73.  
  74. cout << zahl1 << \"+\" << zahl2 << \" = \" << zahl1+zahl2;
  75.  
  76. break;
  77.  
  78. case 2: cout << \"nt Geben sie Zahl eins ein : \";
  79.  
  80. cin >> zahl1;
  81.  
  82. cout << \"nt Geben sie Zahl zwei ein : \";
  83.  
  84. cin >> zahl2;
  85.  
  86. cout << \"nt Subtraktion : \";
  87.  
  88. cout << zahl1 << \"-\" << zahl2 << \" = \" << zahl1-zahl2;
  89.  
  90. break;
  91.  
  92. case 3: cout << cout << \"nt Geben sie Zahl eins ein : \";
  93.  
  94. cin >> zahl1;
  95.  
  96. cout << \"nt Geben sie Zahl zwei ein : \";
  97.  
  98. cin >> zahl2;
  99.  
  100. cout << \"nt Multiplikation : \";
  101.  
  102. cout << zahl1 << \"*\" << zahl2 << \"=\" << zahl1*zahl2;
  103.  
  104. break;
  105.  
  106. case 4: cout << \"nt Geben sie Zahl eins ein : \";
  107.  
  108. cin >> zahl1;
  109.  
  110. cout << \"nt Geben sie Zahl zwei ein : \";
  111.  
  112. cin >> zahl2;
  113.  
  114. cout << \"nt Division : \";
  115.  
  116. cout << zahl1 << \":\" << zahl2 << \"=\" << zahl1/zahl2;
  117.  
  118. break;
  119.  
  120.  
  121.  
  122. case 5: cout << \"nt Geben sie eine Zahl ein : \";
  123.  
  124. cin >> zahl1;
  125.  
  126. cout << \"nt \" << zahl1 << \" zum quadrat ist = \" << zahl1*zahl1 << endl;
  127.  
  128. break;
  129.  
  130. case 6: cout << \"nt Geben sie eine Zahl ein : \";
  131.  
  132. cin >> zahl1;
  133.  
  134. cout << \"nt Die Wurzel von \" << zahl1 << \" = \" << sqrt(zahl1) << endl;
  135.  
  136. break;
  137.  
  138. case 0: cout << \"n Programm wird beendet . . . \";
  139.  
  140. break;
  141.  
  142.  
  143.  
  144. default: cout << endl;
  145.  
  146. cout <<\"ant Ungueltige Eingabe\" << endl;
  147.  
  148. break;
  149.  
  150. }//ende von switch
  151.  
  152. if(eingabe !=0)
  153.  
  154. {
  155.  
  156. cout << endl;
  157.  
  158. cout << endl;
  159.  
  160. cout << \"nt Wollen Sie nochmal Rechnen? (j/n)\" << endl;
  161.  
  162. cout << \"nt Antwort: \";
  163.  
  164. cin >> i;
  165.  
  166. } //ende von if
  167.  
  168. }//ende von do
  169.  
  170. while (i == \'j\');
  171.  
  172. cin.get(); cin.get();
  173.  
  174. return 0;
  175.  
  176. }//ende von if
  177.  
  178.  
  179.  
  180. return 0;
  181.  
  182. }//ende von main


__________________

http://s7b.directupload.net/images/081012/d7tqm2fw.jpg