Computer Science, asked by saidayakar345, 6 hours ago

The program must print "one digit" if the value of N lies between 1 and 9 and the program must print "two digits" if the value of N lies between 10 and 99. Else the program must print "invalid" as the output.

Attachments:

Answers

Answered by kumarutkarsh20093
1

Answer:

which programming language it is

Answered by prsksurendhar0
7

Answer:

case 1 ... 9:

case 10 ... 99:

Explanation:

case can have range of numbers...

Similar questions