题解
2025-05-31 08:25:16
发布于:浙江
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
char a;
cin>>a;
if(isupper(a)) cout<<"A";
else if(islower(a)) cout<<"a";
else if(isdigit(a)) cout<<"0";
else cout<<"other";
return 0;
}
这里空空如也
有帮助,赞一个