#2037. 判断字符
判断字符
判断字符
题目描述
通过键盘输入一个字符,判断该字符是数字字符、大写字母、小写字母、空格还是其他字符
输入说明
输入一个字符。
输出说明
如果是字母 输出"It is an English character!"
如果是数字 输出"It is a digit character!"
如果是空格 输出"It is a space character!"
如果是其他字符 输出"It is other character!"
样例
输入
1
a
,
输出
It is a digit character!
It is an English character!
It is other character!