| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 131630 | 胡海峰老师 | 输出较大的数 | C++ | Accepted | 2 MS | 268 KB | 260 | 2025-09-30 16:46:55 | 
#include <iostream> //designed by lu 202509-0930 using namespace std; int main(){ int a,b; char c; cin>>a>>c>>b; if(a>b) { cout<<"max="<<a; } else { cout<<"max="<<b; } // cout <<a<<endl; // cout<<b<<endl; return 0; }