| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78807 | sh25_ganzy | 图像旋转 | C++ | 编译错误 | 0 MS | 0 KB | 334 | 2025-12-27 22:12:32 |
#include<bits/stdc++.h> using namespace std; int amin(){ 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=n-1;n>=0;n--){ for(int j=0;j<m;j++){ cout<<a[j][i]; } } return 0; }