Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Description: You are going to write a guessing number game. You will generate a random number between 1 and 200. You will ask the user

Description: You are going to write a guessing number game. You will generate a random number between 1 and 200. You will ask the user to guess the number. If the number is correct, you will display You guessed it and the number of guesses. If their guess is too low, you will display Too low and if their guess is too high, you will display Too high. In your program, you need to keep track of the number of guesses so you can display it when they get it correct. After the user guesses the answer, you will ask them if they want to continue and have them enter y to continue or anything else to end.

#include #include #include using namespace std;

image text in transcribed

Description: You are going to write a guessing number game. You will generate a random number between 1 and 200. You will ask the user to guess the number. If the number is correct, you will display "You guessed it" and the number of guesses. If their guess is too low, you will display "Too low and if their guess is too high, you will display "Too high". In your program, you need to keep track of the number of guesses so you can display it when they get it correct. After the user guesses the answer, you will ask them if they want to continue and have them enter 'y to continue or anything else to end. Sample output: Guess number between 1 and 200. (Assume the number is 77 for this example.) Enter number: 101 Too high Enter number: 70 Too low Enter number: 77 You guessed it Number of guesses: 3 Enter 'y' to continue

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 2012 Proceedings Part 2 Lnai 7197

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284892, 978-3642284892

More Books

Students also viewed these Databases questions

Question

Describe three other types of visual aids.

Answered: 1 week ago