Run ID:88183
提交时间: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; }