1459: 字符类型判断

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:17 Solved:2

Description

从键盘键入任意一个字符,判断该字符是大写英文字母或小写英文字母、数字字符还是其它字符。

若键入字母,则屏幕显示 It is an English character.;若键入数字则屏幕显示It is a digit character. ;若输入其它字符,则屏幕显示:It is other character.

程序的运行示例1:

input simple:

b

It is an English character.

程序的运行示例2:

input simple:

6

It is a digit character.

程序的运行示例3:

input simple:

*

It is other character.

Input

输入格式:

"%c"

Output

输出格式:

输入信息提示:"input simple:\n"

英文字符的输出格式:"It is an English character.\n"

数字的输出格式:"It is a digit character.\n"

其它字符的输出格式:"It is other character.\n"

Sample Input Copy

a

Sample Output Copy

input simple:
It is an English character.
97 is an odd number