| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12234 | 苏莉雯 | 求三个数的最大数 | C++ | Accepted | 100 | 1 MS | 260 KB | 263 | 2025-07-08 17:24:22 |
#include<bits/stdc++.h> using namespace std; int max(int a,int b,int c) { int max; if(a>b&&a>c) { return a; } else if(b>c&&b>a) { return b; } else { return c; } } int main() { int a,b,c; cin>>a>>b>>c; cout<<max(a,b,c); }