jaybeau21

main

Apr 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. int main()
  2. {
  3. int computerwins, userwins;
  4. char play;
  5.  
  6. Intro();
  7.  
  8. do
  9. {
  10. //Run the game
  11. PlayGame(computerwins, userwins);
  12.  
  13. //Determine if game is played again
  14. PlayAgain(play);
  15.  
  16. }while(play != 'n');
  17.  
  18. ReportResult(computerwins, userwins);
  19. outro();
  20.  
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment