Computer Science, asked by yugantar2694, 9 months ago

.Write a program to check whether an int type number (taken as input) is a
2-digit number or not.

Answers

Answered by piyushchaudhary12341
1

Answer:

In python it would be :

Num=int(input("enter the number=")) ;

If(Num<=99);

print("you have input 2 digit number")

Else ;

print("sorry, your input is not 2 digit number")

Similar questions