Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88183 | 田苒彤 | 字符类型 | C++ | Accepted | 2 MS | 272 KB | 499 | 2024-08-18 11:54:51 |
#include<bits/stdc++.h> using namespace std; int k; int main() { //65~90 A 97~122 a 48~57 1 char a; cin>>a; if(a>=65&&a<=90){ if(a=='A'||a=='E'||a=='I'||a=='O'||a=='U'){ cout<<"Upper Vowel"; }else{ cout<<"Upper Letter"; } }else if(a>=97&&a<=122){ if(a=='a'||a=='e'||a=='i'||a=='o'||a=='u'){ cout<<"Lower Vowel"; }else{ cout<<"Lower Letter"; } }else if(a>=48&&a<=57){ cout<<"Digit"; }else{ cout<<"Other"; } return 0; }