C++求教
编写程序,判断键盘输入字符的类型(大写字母、小写字母、数字、其他四类)在线求教{:1_921:}{:1_893:} 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;
} 利用ASCII判断即可
页:
[1]