| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134151 | 李昱龙 | 09判断ASCLL码 | C++ | Wrong Answer | 1 MS | 272 KB | 332 | 2025-10-25 21:17:23 |
#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(int(a)>=0&&int(a)<=64&&int(a)>=123&&int(a)<=127){ cout<<"other"; } else{ cout<<"Digital"; } return 0; }
------Input------
~
------Answer-----
other
------Your output-----
Digital