问题 G: 编程任务6-6:判断字符

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:751 解决:409

题目描述

从键盘输入一个字符,判断其是大写,小写,数字还是其他字符。

输入

一个字符

输出

输出该字符,若是小写,输出 “is lower case

                  若是大写,输出  “is upper case”

                  若是数字,输出 “is digit”

                  其他字符,输出 “is other char

并换行

4组测试数据

样例输入 复制

a&U9

样例输出 复制

a is lower case
& is other char
U is upper case
9 is digit

提示

#include <stdio.h>
int main(void)
{
    int T = 4;
    char ch;
    while(T--)
    {
       //
代码
    }
    return 0;
 }