题解
2024-12-17 18:19:39
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
char c;
cin>>c;
if(c>='A'&&c<='Z'){
cout<<'A';
}else if(c>='a'&&c<='z'){
cout<<'a';
}else if(c>='0'&&c<='9'){
cout<<'0';
}else{
cout<<"other";
}
return 0;
}
这里空空如也
有帮助,赞一个