| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122184 | 周泽洋 | 09判断ASCLL码 | C++ | Wrong Answer | 1 MS | 276 KB | 354 | 2025-06-14 18:09:47 |
#include <iostream> #include <cstdio> #include <cmath> using namespace std; int main(){ char x; cin>>x; if (((x<=90)&&(x>=65))){ cout<<"Upper Letter"; }else if (((97>=x)&&(x>=122))){ cout<<"Lower Letter"; }else if(('0'<=x)&&('9'>=x)){ cout<<"Digita"; }else{ cout<<"other"; } }
------Input------
4
------Answer-----
Digital
------Your output-----
Digita