| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139611 | 徐康浩 | 09判断ASCLL码 | C++ | Wrong Answer | 0 MS | 276 KB | 236 | 2025-12-08 16:27:09 |
#include <iostream> using namespace std; int main(){ char a; cin>>a; if(a>=48&a<=122){ if(a>=48&&a<=57){ cout<<"Digital"; }else if(a>=65&&a<=90){ cout<<"Upper Letter"; }else{ cout<<"other"; } } }
------Input------
~
------Answer-----
other
------Your output-----