| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125297 | 刘国洋 | 最大值 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 194 | 2024-01-23 16:42:09 |
#include<iostream> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; if(a>b) cout<<a; if(b>a) cout<<b; if(c>a) cout<<c; return 0; }