Question: #include #include #include using namespace std ; int main () { srand(time ( 0 )) ; char choice ; int random = rand() % 101
#include
#include
#include
using namespace std;
int main()
{
srand(time (0));
char choice;
int random = rand() % 101 +100;
do
{
cout << "Would you like to (p)play or watch the (c)computer play? ";
cin >> choice;
int guess;
if (choice == 'p') {
do
{
cout << "Enter your guess between 100 and 200. ";
cin >> guess;
if (guess > random) {
cout << "Sorry, your guess is too high, try again. ";
} else if (guess < random) {
cout << "Sorry, your guess is too low, try again. ";
} else {
cout << "Congrats, you guessed the correct number, " << random << ". ";
}
} while (guess != random);
}
else if (choice == 'c')
{
int num, tries=0;
num = rand() % 101 + 100;
do
{
cout << "The computer's guess is " << num<< endl;
if (num < random)
{
cout << "Sorry, your guess is too low, try again! ";
num = rand() % 101 + 100;
num++;
}
if (num < random)
{
cout << "Sorry, your guess is too high, try again!";
num = rand() % 101 + 100;
num--;
}
}while (num != random);
}
}while (choice != 'q');
return 0;
}
Would you like to (p)play or watch the (c)computer play?
p
Enter your guess between 100 and 200.
150
Sorry, your guess is too low, try again.
Enter your guess between 100 and 200.
175
Sorry, your guess is too low, try again.
Enter your guess between 100 and 200.
188
Sorry, your guess is too high, try again.
Enter your guess between 100 and 200.
181
Congrats, you guessed the correct number, 181.
Would you like to (p)play or watch the (c)computer play or (q)quit?
c
The computer's guess is 150
Sorry, your guess is too low, try again.
The computer's guess is 175
Sorry, your guess is too low, try again.
The computer's guess is 187
Sorry, your guess is too low, try again.
The computer's guess is 193
Sorry, your guess is too high, try again.
The computer's guess is 190
Sorry, your guess is too low, try again.
The computer's guess is 191
Sorry, your guess is too low, try again.
The computer's guess is 192
Congrats, you guessed the correct number, 192.
Would you like to (p)play or watch the (c)computer play or (q)quit?
q
why wont my computer output do this. anything will help. It keeps putting out the same number
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
