| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 12189 | ElaineTang | 两数比大小 | C++ | 通过 | 100 | 0 MS | 260 KB | 183 | 2025-07-08 12:22:15 |
#include <bits/stdc++.h> using namespace std; int compute(int a,int b) { if(a>b) return a; else return b; } int main() { int a,b; cin>>a>>b; cout<<compute(a,b); }