1
2023-07-15 18:43:40
发布于:浙江
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
char n;
cin>>n;
if(n>=65&&n=<90){
cout<<'A';
}
else if(n>=97&&n=<122){
cout<<'a';
}
else if(n>=48&&n=<57){
cout<<'0';
}
else{
cout<<"other";
}
}
这里空空如也
有帮助,赞一个