| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 46437 | 杨中琦 | 判定大写字母 | C++ | Accepted | 100 | 0 MS | 244 KB | 150 | 2022-07-13 13:17:43 |
#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; }