竞赛
考级
正在减肥的吃货
潜龙暗虎
#include<cstdio> #include<iostream> #include<cmath> using namespace std; int main(){ char a; cin>>a; if(a>='a'&&a<='z') { cout<<"a"; } else if(a>='A'&&a<='Z') { cout<<"A"; } else if(a>='0'&&a<='9') { cout<<"0"; } else { cout<<"other"; } return 0; }
准
1ntrEstingด้้้้้
#include<bits/stdc++.h> using namespace std; int main(){ char n; cin>>n; if(n>=65&&n=<90){ cout<<'A'; } else if(n>=97&&n=<122){ cout<<'a'; } else if(n>=48&&n=<57){ cout<<'0'; } else{ cout<<"other"; } }
菜
共45条