Advertisement
Guest User

DasCold

a guest
Sep 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4.  
  5.  
  6.  
  7. {
  8.  
  9. float Multiplikationierer;
  10. float S;
  11. char L;
  12.  
  13. cout << "wilkommen in _ich verdoppelte deine werte_ programm! bitte geben sie L ein um fortzufahren : ";
  14. cin >> L;
  15. cout << "Bitte geben sie eine Summe ein die ich ihnen verdoppeln werde :\n "; //ab hir is der fehler...
  16. cin >> S;
  17.  
  18. Multiplikationierer = S*S;
  19.  
  20. cout << "Hir sehen sie nun ihre eingegebene Summe hoch 2! --------> " << Multiplikationierer << endl;
  21.  
  22. system ("pause");
  23. return 0;
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement