| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 917 | 王粲瞳 | 求三个数的最大数 | C++ | Accepted | 100 | 0 MS | 256 KB | 151 | 2019-09-22 22:18:02 |
#include<iostream> int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if(a < b) a = b; if(a < c) a = c; printf("%d",a); return 0; }