Guest User

Untitled

a guest
Nov 23rd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. int userInput = 0;
  2. srand((unsigned)time(NULL));
  3. int wheel;
  4.  
  5. cout << "Come play \"Spin the Wheel.\" The wheel has numbers from 1-10." << endl << "If you spin an even number you lose that amount. If you spin an"
  6. << endl << "odd number you win that amount. You start with a $25 bank." << endl;
  7. cin >> userInput;
  8.  
  9. for(wheel = 1; wheel <= 10; wheel++)
  10. {
  11. cout << "Your bank is " <<
  12.  
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment