| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152399 | 赵悦然 | 矩阵倒序输出 | C++ | Compile Error | 0 MS | 0 KB | 351 | 2026-04-25 18:27:57 |
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; int a[n][m]; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[i][j]; } } for(int i=0;i<n;i++){ for(int j=m-1;j>=0;j--){ cout<<a[i][j]<<" "; } cout<<endl; }
Main.cc: In function 'int main()':
Main.cc:17:5: error: expected '}' at end of input
}
^