Guest User

Untitled

a guest
Oct 18th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int eingabe;
  5. int main()
  6.  
  7. while(true)
  8. {
  9.  
  10.  
  11. cout << "Rechnen (x+5)*6 | x=Beliebige Zahl" << endl;
  12. cin >> eingabe;
  13. cout << (eingabe+5)*6 << endl << endl;
  14.  
  15.  
  16. }
Add Comment
Please, Sign In to add comment