Run ID:150105

提交时间:2026-03-22 11:28:35

#include<bits/stdc++.h> using namespace std; int main() { char o; cin>>; if(o<='Z'&&o>='A'){ cout<<"Upper Letter"; } else if(o<='z'&&o>='a'){ cout<<"Lower Letter"; } else if(o<='9'&&o>='0'){ cout<<"Digital"; } else{ cout<<"other"; } return 0; }