Clear Filters
Clear Filters

Loop Statements and Vectorizing Code

1 view (last 30 days)
Ceren Akcam
Ceren Akcam on 31 Dec 2021
Commented: Stephen23 on 31 Dec 2021
How can I solve this question ?
Write a “Guess My Number Game” program. The program generates a random integer in a specified range, and the user (the player) has to guess the number. The program allows the use to play as many times as he/she would like; at the conclusion of each game, the program asks whether the player wants to play again.
The basic algorithm is:
The program starts by printing instructions on the screen.
For every game:
the program generates a new random integer in the range from MIN to MAX. Treat MIN and MAX like constants; start by initializing them to 1 and 100
loop to prompt the player for a guess until the player correctly guesses the integer
for each guess, the program prints whether the player’s guess was too low, too high, or correct
at the conclusion (when the integer has been guessed):
print the total number of guesses for that game
print a message regarding how well the player did in that game (e.g., the player took way too long to guess the number, the player was awesome, etc.). To do this, you will have to decide on ranges for your messages and give a rationale for your decision in a comment in the program.
3. After all games have been played, print a summary showing the average number of guesses.

Answers (0)

Categories

Find more on Video games in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!