题解 判断字符
2023-07-27 20:55:31
发布于:浙江
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
char n;
cin>>n;
if('a'<=n&&n<='z')cout<<"a";
else if('A'<=n&&n<='Z')cout<<"A";
else if('0'<=n&&n<='9')cout<<"0";
else cout<<"other";
return 0;
}
这里空空如也
有帮助,赞一个