c++自带判断函数
2024-07-27 15:02:29
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
char c;
cin>>c;
if(isupper(c)) cout<<'A';
else if(islower(c)) cout<<'a';
else if(isdigit(c)) cout<<0;
else cout<<"other";
return 0;
}
这里空空如也
有帮助,赞一个