在C語言中,可以使用標準庫函數來判斷字母是大寫還是小寫。以下是一種常用的方法:
#include <stdio.h>
#include <ctype.h>
int main() {
char c = 'A';
if(isupper(c)) {
printf("%c is uppercase.\n", c);
} else if(islower(c)) {
printf("%c is lowercase.\n", c);
} else {
printf("%c is not a letter.\n", c);
}
return 0;
}
在上面的代碼中,我們使用isupper()
和islower()
函數來判斷字符c
是大寫還是小寫字母。如果是大寫字母,則輸出uppercase
;如果是小寫字母,則輸出lowercase
;如果不是字母,則輸出not a letter
。