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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started