Question: Create a program that generates a random number from 1 to 1000. Then, ask the user to guess the random number. If the user's guess

Create a program that generates a random number from 1 to 1000. Then, ask the user to guess the random number.

  • If the user's guess is too high, then the program should print "Too High, Try again".
  • If the user's guess is too low, then the program should print "Too low, Try again".

Use a loop to allow the user to keep entering guesses until they guess the random number correctly. Once they figure it, congratulate the user.

Hint: Make sure to generate the random number only once; otherwise, they will probably never finish.

Pseudocode:

seed random

set random to value between 1 and 1000

get guess from user

while guess does not equal random

if guess is less than random

print "Too Low" message

else if guess is greater than random

print "Too High" Message

get guess from user

end loop

print "congratulation" message

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!