tj
2024-10-12 21:21:42
发布于:上海
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
char a;
cin>>a;
if(a>='a'&&a<='z')
{
cout<<'a';
}else if(a>='0'&&a<='9'){
cout<<0;
}else if(a>='A'&&a<='Z'){
cout<<"A";
}else{
cout<<"other";
}
}
这里空空如也
有帮助,赞一个