提交时间:2025-02-09 15:07:52

运行 ID: 5432

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