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
1
Answer:
which programming language it is
Answered by
7
Answer:
case 1 ... 9:
case 10 ... 99:
Explanation:
case can have range of numbers...
Similar questions