问题描述
给定一个英文字母判断这个字母是大写还是小写。
输入格式
输入只包含一个英文字母c。
输出格式
如果c是大写字母,输出“upper”,否则输出“lower”。
样例输入
x
样例输出
lower
样例输入
B
样例输出
upper
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> #include <cctype> using namespace std; int main() { char c; cin >> c; if(isupper(c)) { cout << "upper"; } else { cout << "lower"; } return 0; } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼