#29545:


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a015. 矩陣的翻轉 | From: [182.233.207.92] | 發表日期 : 2022-03-11 10:48

#include <iostream>

#include <string> 

using namespace std;

int main()

{

int x, y, a[100][100];

 

while (cin >> x >> y)

{

for (int i = 0; i < x; i++)

{

for (int j = 0; j < y; j++)

{

cin >> a[i][j];

}

}

 

for (int i = 0; i < y; i++)

{

for (int j = 0; j < x; j++)

{

cout << a[j][i] << " ";

}

cout << endl;

}

}

}

 
ZeroJudge Forum