| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134157 | 李昱龙 | 09判断ASCLL码 | C++ | Accepted | 1 MS | 268 KB | 301 | 2025-10-25 21:32:40 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(int(a)>=65&&int(a)<=90){ cout<<"Upper Letter"; } else if(int(a)>=97&&int(a)<=122){ cout<<"Lower Letter"; } else if(std::isdigit(a)){ cout<<"Digital"; } else{ cout<<"other"; } return 0; }