在C语言中,判断一个字符是大写字母还是小写字母有多种方法:
#include <ctype.h>
int main() {
char ch = 'A';
if (isupper(ch)) {
printf("字符是大写字母\n");
} else {
printf("字符不是大写字母\n");
}
if (islower(ch)) {
printf("字符是小写字母\n");
} else {
printf("字符不是小写字母\n");
}
return 0;
}
#include <stdio.h>
int main() {
char ch = 'A';
if (ch >= 'A' && ch <= 'Z') {
printf("字符是大写字母\n");
} else {
printf("字符不是大写字母\n");
}
if (ch >= 'a' && ch <= 'z') {
printf("字符是小写字母\n");
} else {
printf("字符不是小写字母\n");
}
return 0;
}
这两种方法都可以判断一个字符是大写字母还是小写字母,选择哪种方法取决于具体的需求和代码风格。