Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6513 | 邓小龙 | 矩阵转置 | C++ | Accepted | 2 MS | 300 KB | 459 | 2025-03-01 15:23:05 |
#include<bits/stdc++.h>//万能头 #include<iostream> #include<algorithm> using namespace std; int main(){ int n,m,a[101][101]; cin>>n>>m; for(int i=0;i<n;i++) for(int j=0;j<m;j++) cin>>a[i][j]; //输出矩阵,将第j列转成行 for(int j=0;j<m;j++){//列号转行号 for(int i=0;i<n;i++)//行号转列号 cout<<a[i][j]<<" "; cout<<endl; } return 0; }