Draw a structured flowchart or write pseudocode that describes the process of guessing a number between 1 and 100. After each guess, the player is told that the guess is too high or too low. The process continues until the player guesses the correct number. Pick a number and have a fellow student try to guess it by following your instructions

Respuesta :

Pseudocode is below

Step-by-step explanation:

random_number = genRandomInt[1, 100]

get_input = input(“Select a number between 1 and 100: ")  

while get_input<100

if get_input >random_number:

print(“the number you selected is high”)

else if get_input < random_number

print(“the number you selected is low”)

else:

print(“correct number!”)

end