Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int main()
- {
- int computerwins, userwins;
- char play;
- Intro();
- do
- {
- //Run the game
- PlayGame(computerwins, userwins);
- //Determine if game is played again
- PlayAgain(play);
- }while(play != 'n');
- ReportResult(computerwins, userwins);
- outro();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment