How to solve Please tell ASAP

How to solve without using ASCII Code.
Just give me hint, Don’t tell the solution.

@cbcao263
check (ch-‘a’) if it lies between 0 to 25, print “L”. else check if (ch-‘A’) lies between 0 to 25, if true print “U” else print “I”.

I have done by this method but I want to be solved without using the ASCII Codes, So Please tell for that.

you aren’t checking their ASCII Values here, you are just comparing.
Another method is you can simply check for ch. if(‘a’ <= ch <= ‘z’) print “L”, similarly for uppercase else print ‘I’.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.