| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12222 | 苏莉雯 | 两数比大小 | C++ | Accepted | 100 | 0 MS | 260 KB | 204 | 2025-07-08 16:41:03 |
#include<bits/stdc++.h> using namespace std; int max(int a,int b) { int max; if(a>b) { return a; } else { return b; } } int main() { int a,b; cin>>a>>b; cout<<max(a,b); }