| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144907 | 刘宸宇 | 09判断ASCLL码 | C++ | Accepted | 0 MS | 272 KB | 294 | 2026-01-24 19:29:44 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a<='z'&&a>='a') cout<<"Lower Letter"<<endl; else if(a<='Z'&&a>='A') cout<<"Upper Letter"<<endl; else if(a<='9'&&a>='0') cout<<"Digital"<<endl; else cout<<"other"<<endl; return 0; }