| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143815 | 徐艺哲 | A+B 输入输出练习IV | C++ | Compile Error | 0 MS | 0 KB | 287 | 2026-01-17 20:07:14 |
# include<stdio.h> #include<iostream> using namespace std; int main(){ int N; cin>>N; int a[N][N]; int sum=0; for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ cin>>a[i][j]; sum+=a[i][j]; } } cout<<sum<<endl;
Main.cc: In function 'int main()':
Main.cc:15:20: error: expected '}' at end of input
cout<