| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125270 | 龚梓嘉 | 最大值 | C++ | Accepted | 100 | 0 MS | 248 KB | 183 | 2024-01-23 16:40:19 |
#include<iostream> using namespace std; int main() { double x, y, z; cin >> x >> y >> z; if(y>z) swap(y, z); if(z > x) swap(x, z); if(y>x) swap(y,x); cout<<x; return 0; }