| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 118562 | 殷佳雨萱 | 数字方阵 | C++ | Compile Error | 0 MS | 0 KB | 217 | 2025-05-05 08:20:56 |
#include<iostream> using namespace std; int a[10][10]; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cout<<a[i][j] } } return 0; }
Main.cc: In function 'int main()':
Main.cc:10:9: error: expected ';' before '}' token
}
^