Advertisement
thecplusplusguy

Again c++

Dec 2nd, 2011
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. //include, main and functions...
  2.     char c;
  3.     do{
  4.         //the game code here
  5.         cout << "Again (i/n): ";
  6.         cin >> c;
  7.     }while(c=='i' || c=='I');
  8. //return functions, close main...
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement