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