| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140116 | 鲁博睿 | 矩阵旋转 | C++ | Compile Error | 0 MS | 0 KB | 373 | 2025-12-13 15:41:52 |
#include<bits/stdc++.h> using namespace std; int a[105][105]; int main(){ int i,j,m,n; cin>>n>>m; for(i = 1;i <= n;i++){ for(j = 1;j <= m;j++){ cin>>a[i][j]; } } for(j = 1;j <= m;j++){ for(i = n;i >= 1;i--){ cout<<a[i][j]<<" "; } =cout<<endl; } return 0; }
Main.cc: In function 'int main()':
Main.cc:16:4: error: expected primary-expression before '=' token
=cout<