ACGO
2024-02-20 08:55:00
发布于:北京
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
char n;
cin>>n;
if(n>='a' && n<='z'){
cout<<"a";
}else if(n>='A' && n<='Z'){
cout<<"A";
}else if(n>='0' && n<='9'){
cout<<"0";
}else{
cout<<"other";
}
return 0;
}
这里空空如也
有帮助,赞一个