三明i 发表于 2020-5-29 12:14

C++求教

编写程序,判断键盘输入字符的类型(大写字母、小写字母、数字、其他四类)
在线求教{:1_921:}{:1_893:}

|矢空 发表于 2020-5-29 14:14

char p;
while(cin>>p){
    if(p>='a'&&p<='z')cout<<"lower"<<endl;
    else if(p>='A'&&p<='Z')cout<<"upper"<<endl;
    else if(p>='0'&&p<='9')cout<<"number"<<endl;
    else cout<<"other"<<endl;
}

魔术使nqy 发表于 2020-5-30 10:08

利用ASCII判断即可
页: [1]
查看完整版本: C++求教