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
Music,
5 months ago
English,
5 months ago
Science,
5 months ago
Social Sciences,
11 months ago
English,
11 months ago
Math,
1 year ago
Computer Science,
1 year ago
Science,
1 year ago