#include //Write a new version of the Guess My Number program in which the player and the computer switch roles. That is, the player picks a number and the computer must guess what it is. //I have included the code for the original Guess My Number Game below. //How would you update the code so that the player picks the number and the computer guesses? #include #include #include using namespace std; int main() {   srand(static_cast(time(0)));   //seed random number generator   int secretNumber = rand() % 100 + 1;         // random number between 1 and 100   int tries = 0;int guess;   cout << "\tWelcome to Guess My Number\n\n";   do{     cout << "Enter a guess: ";     cin >> guess;     ++tries;     if (guess > secretNumber){       cout << "Too high!\n\n";       }else if (guess < secretNumber){       cout << "Too low!\n\n";       }else{       cout << "\nThat’s it! You got it in " << tries << " guesses!\n";       }     } while (guess != secretNumber); }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 30PE
icon
Related questions
Question

#include <iostream>

//Write a new version of the Guess My Number program in which the player and the computer switch roles. That is, the player picks a number and the computer must guess what it is.

//I have included the code for the original Guess My Number Game below.

//How would you update the code so that the player picks the number and the computer guesses?

#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;

int main()
{
  srand(static_cast<unsigned int>(time(0)));   //seed random number generator
  int secretNumber = rand() % 100 + 1;         // random number between 1 and 100
  int tries = 0;int guess;
  cout << "\tWelcome to Guess My Number\n\n";

  do{
    cout << "Enter a guess: ";
    cin >> guess;
    ++tries;
    if (guess > secretNumber){
      cout << "Too high!\n\n";
      }else if (guess < secretNumber){
      cout << "Too low!\n\n";
      }else{
      cout << "\nThat’s it! You got it in " << tries << " guesses!\n";
      }
    } while (guess != secretNumber);
}

 

Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT