题解+注解
2023-07-04 18:46:05
发布于:上海
22阅读
0回复
0点赞
其实这道题不用ASCII,不过是判断在哪两个字符之间罢了。只要结合if语句,这道题并不难。
#include<bits/stdc++.h>
using namespace std;
int main(){
char n;
cin>>n;
if(n>='a' and n<='z') cout<<'a';
else if(n>='A' and n<='Z') cout<<'A';
else if(n>='0' and n<='9') cout<<0;
else cout<<"other";
return 0;
}
这里空空如也
有帮助,赞一个