Code for a number greater than 100
# we have to make a program if user type less than 100 than the program will continue otherwise it will stop.
while(True):
a=int(input("Enter the number:" ))
if a>100:
print("Congragulation you enter the number greator than 100")
break
else:
print("Make sure you enter a number greater than 100.")
continue
Comments
Post a Comment