| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125137 | 黄子轩 | 最大值 | C++ | Wrong Answer | 0 | 0 MS | 236 KB | 251 | 2024-01-23 16:27:54 |
#include<bits/stdc++.h> using namespace std; int main() { double p,s,t; cin>>p>>s>>t; if(p>=s){ if(p>=t){ cout<<p; }} else if(s>=p){ if(s>=t){ cout<<s; }} else if(t>=s){ if(t>=p){ cout<<t; }} }