| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145112 | 姜景文 | 输出较大的数 | C++ | Compile Error | 0 MS | 0 KB | 148 | 2026-01-25 08:46:06 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b; c=max(a,b) cout<<"max="<<c; return 0; }
Main.cc: In function 'int main()':
Main.cc:7:7: error: expected ';' before 'cout'
cout<<"max="<