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

Popular posts from this blog

Maths Unit 1 ( Theory )

Intelligence System notes part 2

code for find the determinant of 3x3 matrix