| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 687 | 周景轩 | 打印小写字母表 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 174 | 2019-09-21 15:20:39 |
#include<iostream> int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); if(a>=b&&a>=c) max=a; else if(b>=c) max=b; else max=c; printf("%d",max); return 0; }