3123:【例21.3】 字符类型判断
【题目描述】
输入一个字符,判断该字符是否大写字母、小写字母、数字字符或其他字符。分别输出对应的提示信息。
【输入】
输入为一个字符。
【输出】
如果该字符是大写字母,则输出" upper
";若是小写字母,则输出" lower
";若是数字字符,则输出" digit
";若是其他字符,则输出" other
"。(输出不含双引号)
【输入样例】
1
【输出样例】
digit
#include<iostream>
using namespace std;
int main(){
char c;
cin>>c;
if(c>='0'&&c<='9'){
cout<<"digit";//数字
}else if(c>='a'&&c<='z'){
cout<<"lower";//小写字母
}else if(c>='A'&&c<='Z'){
cout<<"upper";//大写字母
}else{
cout<<"other";
}
return 0;
}
标签:字符,21.3,输出,小写字母,&&,BAS3123,输入
From: https://blog.csdn.net/xunebs/article/details/140380458