Building A Guessing Game
Lesson 21Author : GOUP
Last Updated : September, 2020
Code
int secretNum = 7;
int guess;
int guessCount = 0;
int guessLimit = 3;
bool outOfGuesses = false;
while(guess != secretNum && !outOfGuesses){
if(guessCount < guessLimit){
cout << "Enter a guess: ";
cin << guess;
guessCount++;
} else {
outOfGuesses = true;
}
}
if(outOfGuesses){
cout << "You Lose!" << endl;
} else {
cout << "You Win!" << endl;
}