灰长的简单
2023-07-18 14:16:28
发布于:江苏
8阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
char n;
cin>>n;
if(n>=65 and n <= 90){
cout<<'A';
}
else if(n>=97 and n<=122){
cout<<'a';
}
else if(n>=48 and n<=57){
cout<<'0';
}
else{
cout<<"other";
}
return 0;
}
这里空空如也
有帮助,赞一个