Computer Science, asked by dharurkarsapna, 1 month ago

A program to check whether a number given by the user is a two digit or a three digit number.(Use a ternary operator)​

Answers

Answered by techtoreact
2

Answer:

Get input number from user using input()

check whether the number is greater than 99 and less than 100 using if statement

it is true, then print number is three digit number using print()

Else print num is not three digit number using print() method.

Similar questions