| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 719 | 朱秦千惠 | 求三个数的最大数 | C++ | Accepted | 100 | 0 MS | 256 KB | 183 | 2019-09-21 18:07:50 |
#include<iostream> int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a>b&&a>c) printf("%d",a); if(b>a&&b>c) printf("%d",b); if(c>a&&c>b) printf("%d",c); return 0; }