| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78813 | sh25_ganzy | 图像旋转 | C++ | 解答错误 | 0 MS | 256 KB | 359 | 2025-12-27 22:17:16 |
#include<bits/stdc++.h> 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[j][i]<<" "; } cout<<endl; } return 0; }