提交时间:2025-02-23 13:39:51

运行 ID: 6308

#include<bits/stdc++.h> using namespace std; int main() { char c1; cin>>c1; if((c1<=57)&&(c1>=48)) { cout<<"0"; } else if((c1<=90)&&(c1>=65)) { cout<<"A"; } else if((c1<=122)&&(c1>=97)) { cout<<"a"; } else { cout<<"other"; } }