| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 132974 | 林鑫磊 | 输出较大的数 | C++ | Accepted | 1 MS | 268 KB | 271 | 2025-10-12 18:47:19 | 
#include<iostream> #include<cstdio> #include<cstring> #include <iomanip> #include<cmath> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<"max="<<a; }else{ cout<<"max="<<b; } return 0; }