溫馨提示×

c語言如何判斷字符大小寫

小億
96
2024-08-11 18:31:32
欄目: 編程語言

在C語言中,可以使用標準庫函數(shù)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()函數(shù)分別判斷ch是否為大寫字母或小寫字母,并輸出相應(yīng)的結(jié)果。

0