Run ID:156802
提交时间:2026-07-11 11:15:50
#include<iostream> using namespace std; int main() { long long d; cin>>d; char a[1]; if(a[1]>='A'&&a[1]<='Z'){ if(a[1]=='A'||a[1]=='E'||a[1]=='I'||a[1]=='O'||a[1]=='U'){ cout<<"UpperVowel"; }else{ cout<<"Upperletter"; } }else{ if(a[1]>='a'&&a[1]<='z'){ if(a[1]=='a'||a[1]=='e'||a[1]=='i'||a[1]=='o'||a[1]=='u'){ cout<<"LowerVowel"; }else{ cout<<"Lowerletter"; } }else{ if(a[1]>='0'&&a[1]<='9'){ cout<<"Digit"; }else{ cout<<"Other"; } } } return 0; }