Run ID:91033

提交时间:2024-09-21 11:05:46

#include<iostream> using namespace std; int main(){ char s; int a; cin>>s; a=s; if(65<=a and a<=90){ cout<<"Upper Letter"; } if(48<=a and a<=57){ cout<<"Digital"; } if(97<=a and a<=122){ cout<<"Lower Letter"; } else{ cout<<"other"; } return 0; }