题解
2023-08-06 20:03:24
发布于:浙江
0阅读
0回复
0点赞
#include<cstdio>
#include<iostream>
#include<cmath>
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;
}
这里空空如也
有帮助,赞一个