Run ID:147352
提交时间:2026-02-04 16:05:12
#include<bits/stdc++.h> using namespace std; char a; int main(){ cin>>a; if(a>='A'&&a<='Z')cout<<"Upper Letter"; else if(a>='a'&&a<='z')cout<<"Lower Letter"; else if(a>='0'&&a<='9')cout<<"Digital"; else cout<<"other"; return 0; }