Advertisement
Guest User

Untitled

a guest
Apr 7th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int choice;
  8.  
  9. while (true)
  10. {
  11. cout << "blabla";
  12. cin >> choice;
  13. cin.ignore();
  14.  
  15. if (choice == 1)
  16. {
  17. cout << "Hallå!";
  18. break;
  19. }
  20. else
  21. {
  22. cout << "Ditt val lär vara 1 ehehe." << endl << endl;
  23. }
  24. }
  25. system("PAUSE");
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement