| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134150 | 鄢晨曦 | 09判断ASCLL码 | C++ | Wrong Answer | 1 MS | 264 KB | 338 | 2025-10-25 20:47:55 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a<=65&&a>=90){ cout<<"Upper Letter"; } if(a<=97&&a>=122){ cout<<"Lower Letter"; } if(a<=48&&a>=57){ cout<<"Digital"; } if(a<=0&&a>=47&&a<=58&&a>=64&&a<=91&&a>=96&&a<=123&&a>=127){ cout<<"other"; } return 0; }
------Input------
4
------Answer-----
Digital
------Your output-----