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