Computer Science, asked by ShinySharma22, 11 months ago

WAP to enter any
no. and print whether the no. is a two digit or a three digit number​

Answers

Answered by gauravarduino
0

Explanation:

C Program To Check Whether a number is one digit or two digits or three digits ..

Answered by Anonymous
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