Advertisement
Guest User

Untitled

a guest
May 27th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. do
  2. {
  3. cin >> VillageChoice;
  4. if (VillageChoice == "y" || VillageChoice == "Y")
  5. {
  6. UselessInput = 'g';
  7. }
  8. else if (VillageChoice == "n" || VillageChoice == "N")
  9. {
  10. cout << "You stay around regardless of the obvious danger. Why would you do that? "
  11. "A giantLION bursts out of the trees and maims you until you run out of blood and organs" << endl;
  12. cout << "You are Dead. Press a key to restart the adventure...Moron." << endl;
  13. cin >> UselessInput;
  14. }
  15. else
  16. {
  17. cout << "You didn't pick y or n. Try again.";
  18. }
  19. }
  20. while (VillageChoice != "n" || VillageChoice != "N");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement