Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99727 毛靖平 09判断ASCLL码 C++ Wrong Answer 1 MS 272 KB 315 2024-11-30 14:06:58

Tests(3/5):


Code:

#include<iostream> using namespace std; int main(){ char a; cin>>a; if(a>='A' && a<='Z') cout<<"Upper Letter"; else if(a>='a' && a<='z') cout<<"Lower Lette"; else if(a>='0' && a<='9') cout<<"Digital"; else cout<<"other"; }


Run Info:

------Input------
z
------Answer-----
Lower Letter
------Your output-----
Lower Lette