答案
2025-03-06 17:41:13
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
#define LL long long
using namespace std;
char a;
int main() {
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;
}
这里空空如也
有帮助,赞一个