WAP to enter any
no. and print whether the no. is a two digit or a three digit number
Answers
Answered by
0
Explanation:
C Program To Check Whether a number is one digit or two digits or three digits ..
Answered by
1
Answer:
hi.. this is a python program
Explanation:
n=int(input("enter the number"))
num=str(n)
if len(num)==2:
print("its a two digit number")
elif len(num)==3:
print("its a three digit number")
#hope it helps you
Similar questions
Math,
6 months ago
Computer Science,
6 months ago
Biology,
6 months ago
Social Sciences,
1 year ago
English,
1 year ago
Math,
1 year ago
Computer Science,
1 year ago
Science,
1 year ago