| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12173 | 罗炜翰 | 求三个数的最大数 | C++ | Accepted | 100 | 1 MS | 256 KB | 205 | 2025-07-07 17:35:54 |
#include<bits/stdc++.h> using namespace std; int q(int x,int y){ if(x>y) return x; else if(y>x) return y; } int main(){ int a,b,c; cin>>a>>b>>c; cout<<q(a,q(b,c)); return 0; }