Run ID:150104
提交时间:2026-03-22 11:27:33
#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; }