| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 762 | 高张蕾 | 求三个数的最大数 | C++ | Accepted | 100 | 0 MS | 252 KB | 186 | 2019-09-21 21:22:22 |
#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; }