Ask User Input Number Less 100 Print Numbers Number 100 Loop Correctly Num Int Input Ente Q37295528

Ask the user to input a number less than 100. Print all thenumbers from that number to 100. Which loop correctly does this?a.) num = int (input(“Enter a number between 1 and 100: “)) c = numwhile (c <= 100):   print (c)   c = c + 1 b.) num = int(input(“Enter a number between 1 and 100: “)) c = num while (num<= c):   print (c)   c = c + 1 c.) num = int (input(“Enter anumber between 1 and 100: “)) c = num while (c <= num):   print(c)   c = c +

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.