提交时间:2022-07-13 13:17:43
运行 ID: 46437
#include<bits/stdc++.h> using namespace std; int main(){ char c; cin>>c; if(c>='A'&&c<='Z') cout<<"true"; else cout<<"false"; return 0; }