用c++编写判断字符大小写
时间: 2023-05-31 13:01:44 浏览: 171
c++ string 字符大小写的转换(csdn)————程序.pdf
#include <stdio.h>
#include <ctype.h>
int main() {
char c;
printf("请输入一个字符:");
scanf("%c", &c);
if (isupper(c)) {
printf("%c是大写字母\n", c);
} else if (islower(c)) {
printf("%c是小写字母\n", c);
} else {
printf("%c不是字母\n", c);
}
return 0;
}
阅读全文