Question: C++ code : Would like to be able to make the program stop after 5 attempts this program has the user guess a number between

C++ code : Would like to be able to make the program stop after 5 attempts

this program has the user guess a number between 1-10 and after 5 attempts the program says " Sorry too many tries"

#include

#include

#include

using namespace std;

int main()

{

srand((unsigned)time(NULL));

int guess;

int num;

num = rand()%10+1;

cout << "Guess a number between 1-10 : ";

while(1)

{

cout <<"Enter your guess: ";

cin >> guess;

if (guess == num )

{

cout<< "You've guessed CORRECTLY"<

break;

}

else if (guess > num )

{

cout << "TOO HIGH try again ";

}

else

{

cout <<"TOO LOW try again ";

}

}

return 0;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!