题解
2025-07-22 14:14:12
发布于:广东
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
char s;
cin>>s;
if(s>='A'&&s<='Z') cout<<'A';
else if(s>='a'&&s<='z') cout<<'a';
else if(s>='0'&&s<='9') cout<<'0';
else cout<<"other";
return 0;
}
这里空空如也
有帮助,赞一个