| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123632 | 葛屹阳 | 找最大的数 | C++ | Compile Error | 0 MS | 0 KB | 151 | 2025-07-08 11:01:00 |
#include<iostream> using namespace std; int main() { int a[110],max=0; for(int i=1;i<=5;i++) if(a[i]>max) { max=a[i] } return 0; }
Main.cc: In function 'int main()': Main.cc:10:2: error: expected ';' before '}' token } ^