| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150418 | 张蔚林 | 09判断ASCLL码 | C++ | Accepted | 1 MS | 272 KB | 283 | 2026-03-28 09:59:52 |
#include<bits/stdc++.h> using namespace std; int main() { char o; cin>>o; if(o<='Z'&&o>='A'){ cout<<"Upper Letter"; } else if(o<='z'&&o>='a'){ cout<<"Lower Letter"; } else if(o<='9'&&o>='0'){ cout<<"Digital"; } else{ cout<<"other"; } return 0; }