Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
128844 | 田祥江 | 09判断ASCLL码 | C++ | Accepted | 1 MS | 272 KB | 291 | 2025-08-20 14:03:14 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(int(a)<91&&int(a)>=65){ cout<<"Upper Letter"; } else if(int(a)>96&&int(a)<123){ cout<<"Lower Letter"; } else if(int(a)>47&&int(a)<58){ cout<<"Digital"; } else{ cout<<"other"; } }