| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5851 | 张亦杨 | 判定大写字母 | C++ | Compile Error | 0 | 0 MS | 0 KB | 160 | 2020-08-15 09:14:09 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a if(a>=65&&a<91){ cout<<"true"; }else{ cout<<"false"; } return 0; }