1235: pt8605 判断字符
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:30
Solved:9
Description
【问题描述】
键盘输入任意一个字符,判断是大写字母、小写字母还是数字。
√如果是大写字母,输出“uppercase”;
√如果是小写字母,输出“lowercase”;
√如果是数字,输出“number”;
√其他字符,输出“others”。
键盘输入任意一个字符,判断是大写字母、小写字母还是数字。
√如果是大写字母,输出“uppercase”;
√如果是小写字母,输出“lowercase”;
√如果是数字,输出“number”;
√其他字符,输出“others”。
Input
【输入格式】输入仅一行,一个字符。
Output
【输出格式】输出也是一行,判断结果。
Sample Input Copy
A
Sample Output Copy
uppercase
HINT
字符之间也能相互比较