判斷是什麼字元

Dance_Bear發表於2021-01-01

程式碼又一波強勢來襲

題目描述
從鍵盤讀入一個字元,有可能是大寫字母、小寫字母、數字中的一種,請程式設計判斷,該字元具體是什麼字元,如果是大寫字母請輸出"upper",如果是小寫字母請輸出"lower",如果是數字請輸出"digit"。
輸入
一個字元。
輸出
按題意輸出是哪種字元。
樣例輸入複製
A
樣例輸出複製
upper

#include<bits/stdc++.h>
using namespace std;
int main() {
    char c;
    cin>>c;
    if(c >='A' && c <= 'Z'){
        cout<<"upper";
    }else if(c >= 'a' && c <= 'z'){
        cout<<"lower";
    }else{
        cout<<"digit"; 
    }
     
}

相關文章