#24909:


mdwiwi0130@gmail.com (naiye130)

學校 : 黎明中學
編號 : 137034
來源 : [36.233.101.235]
最後登入時間 :
2024-11-20 00:38:09
a015. 矩陣的翻轉 | From: [118.232.64.225] | 發表日期 : 2021-04-04 18:08

C++解

 

#include <iostream>

using namespace std;

int main(){

int x[100][100]={};

int a,b,i,y;

while(cin>>a>>b){

for(i=0;i<a;i++){

for(y=0;y<b;y++){

cin>>x[y][i];

}

}

for(int y=0;y<b;y++){

for(int i=0;i<a;i++){

cout<<x[y][i]<<" ";

}

cout<<"\n";

}

}

return 0;

 

 
ZeroJudge Forum