Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109303 | 叶城俊 | 矩阵旋转 | C++ | Accepted | 5 MS | 336 KB | 384 | 2025-02-08 10:24:05 |
#include <bits/stdc++.h> int a[101][101],b[101][101]; using namespace std; int main() { int n,m; cin>>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<m;i++){ for(int j=0;j<n;j++){ b[i][j]=a[j][i]; } } for(int i=0;i<m;i++){ for(int j=n-1;j>=0;j--){ cout<<b[i][j]<<" "; } cout<<endl; } return 0; }