提交时间:2023-09-12 13:56:17

运行 ID: 102214

#include <bits/stdc++.h> using namespace std; int a[114][114]; int n,m; signed main() { cin >> n >> m; for(int i = 1;i <= n; i++) { for(int j = 1; j <= m; j++) { cin >> a[i][j]; } } for(int i = 1; i <= m; i++) { for(int j = 1; j <= n; j++)cout << a[j][i]<< " "; cout << endl; } return 0; }