| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5312 | A班-高思婕 | 判断字符类型 | C++ | Accepted | 100 | 1 MS | 264 KB | 313 | 2025-02-03 16:13:14 |
#include <bits/stdc++.h> using namespace std; int main() { char n; cin>>n; if(n >= 'A' && n <= 'Z') { cout<<"A"<<endl; } else if(n >= 'a' && n <= 'z') { cout<<"a"<<endl; } else if(n >= '0' && n <= '9') { cout<<"0"<<endl; } else { cout<<"other"<<endl; } return 0; }