0
write an input statement validation loop that prompts the user to enter a number less than 20 or greater than 75?
3 Answers
+ 2
use a while loop to check against all the numbers that shouldnt be entered.
hint:
loop while
num > 20 and num < 75
0
just finished writing the code
0
write an input statement validation loop that prompts the user to enter a number less than 20 or greater than 75