在C语言中,可以使用标准库函数isupper()
和islower()
来判断一个字符是大写还是小写。
示例代码如下所示:
#include <stdio.h>
#include <ctype.h>
int main() {
char ch = 'A';
if (isupper(ch)) {
printf("%c 是大写字母\n", ch);
} else if (islower(ch)) {
printf("%c 是小写字母\n", ch);
} else {
printf("%c 不是字母\n", ch);
}
return 0;
}
在上面的示例代码中,我们首先定义了一个字符ch
,然后使用isupper()
和islower()
函数分别判断ch
是否为大写字母或小写字母,并输出相应的结果。