Write a program named Range that asks the user to enter an integer.
Test the number entered to see if it is below 0, equal to 0, between 1 and 10, or more than 10
ㅤㅤSample Output:
ㅤㅤBe sure your output looks like my examples below:
ㅤㅤ>Run #1
ㅤㅤEnter an integer to test: 4
ㅤㅤThe number that you selected is more than zero, but 10 or less
ㅤㅤ>Run #2
ㅤㅤEnter an integer to test: -5
ㅤㅤThe number that you selected is below zero
ㅤㅤ>Run #3
ㅤㅤEnter an integer to test. 11
ㅤㅤThe number that you selected is more than 10
ㅤㅤRun #4
ㅤㅤEnter an integer to test: 0
ㅤㅤThe number that you selected is at zero.