Run ID:109480

提交时间:2025-02-09 10:46:27

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char w; cin>>w; if(w>='A'&&w<='Z'){ cout<<"Upper Letter"; } else if(w>='a'&&w<='z'){ cout<<"Lower Letter"; } else if('6'&&w<='1') cout<<"Digital" }else{ cout<<"other" } return 0; }