题解
2025-07-26 11:31:01
发布于:广东
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>='a'&&a<='z') cout<<"a";
else if(a>='0'&&a<='9') cout<<"0";
else cout<<"other";
return 0;
}
这里空空如也
有帮助,赞一个