Run ID:127790
提交时间:2025-07-29 13:19:52
#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-1; i++) for (int j = 0; j <= m-1; j++) cin >> a[i][j]; for (int i = 0; i <= n-1; i++) { for (int j = 0; j <= m-1; j++) cout << a[j][i] << " "; cout << endl; } return 0; }