Run ID:156826

提交时间:2026-07-11 11:24:00

#include<bits/stdc++.h> using namespace std; int main(){ char max; cin>>max; if(max<='A'||max<='Z'){ if(max=='A',=='E',=='I',=='O',=='U') cout<<"Upper Vowel"; }else{ cout<<"Upper Letter"; } if(max<='a'||max<='z'){ if(max=='a',=='e',=='i',=='o',=='u') cout<<"Lower Vowel"; }else{ cout<<"Lower Letter"; } if(max<='1'||max<='9'){ cout<<"Digit"; }else{ cout<<"Other"; } }