13189: 判断字符
          Memory Limit:128 MB
          Time Limit:1.000 S
         
      
      
        
          Judge Style:Text Compare
          Creator:
      
      
          Submit:2
          Solved:0
      
Description
通过键盘输入一个字符,判断该字符是数字字符、大写字母、小写字母、空格还是其他字符
    Input
输入一个字符。
      Output
如果是字母 输出"It is an English character!"
如果是数字 输出"It is a digit character!"
如果是空格 输出"It is a space character!"
如果是其他字符 输出"It is other character!"
Sample Input Copy
1
a
,Sample Output Copy
It is a digit character!
It is an English character!
It is other character!