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