Run ID:122197

提交时间:2025-06-14 18:17:19

#include <iostream> #include <cstdio> #include <cmath> using namespace std; int main(){ char x; cin>>x; if ((x<=90)&&(x>=65)){ cout<<"Upper Letter"; }else if(97>=x && x<=122){ cout<<"Lower Letter"; }else if((48<=x)&&(57>=x)){ cout<<"Digital"; }else{ cout<<"other"; } }