資料結構實驗之陣列一 矩陣轉置

2021-08-22 12:58:38 字數 634 閱讀 8254

problem description

陣列——矩陣的轉置

給定乙個m*n的矩陣(m,n<=100),求該矩陣的轉置矩陣並輸出。

input

輸入包含多組測試資料,每組測試資料格式如下:

第一行包含兩個數m,n

以下m行,每行n個數,分別代表矩陣內的元素。

(保證矩陣內的數字在int範圍之內)

output

對於每組輸出,輸出給定矩陣的轉置矩陣。兩組輸出之間用空行隔開。

sample input

2 3

1 2 3

4 5 6

1 11

sample output

1 4

2 53 6

1

#include #include int a[1200][2000],b[2000][2000];

int main()

}for(i=1;i<=n;i++)

}for(i=1;i<=n;i++)

printf("\n");

}printf("\n");

}return 0;

}

資料結構實驗之陣列一 矩陣轉置

time limit 1000ms memory limit 65536kb submit statistic problem description 陣列 矩陣的轉置 給定乙個m n的矩陣 m,n 100 求該矩陣的轉置矩陣並輸出。input 輸入包含多組測試資料,每組測試資料格式如下 第一行包含...

資料結構實驗之陣列一 矩陣轉置

資料結構實驗之陣列一 矩陣轉置 time limit 1000 ms memory limit 65536 kib problem description 陣列 矩陣的轉置 給定乙個m n的矩陣 m,n 100 求該矩陣的轉置矩陣並輸出。input 輸入包含多組測試資料,每組測試資料格式如下 第一行...

資料結構實驗之陣列一 矩陣轉置

problem description 陣列 矩陣的轉置 給定乙個m n的矩陣 m,n 100 求該矩陣的轉置矩陣並輸出。input 輸入包含多組測試資料,每組測試資料格式如下 第一行包含兩個數m,n 以下m行,每行n個數,分別代表矩陣內的元素。保證矩陣內的數字在int範圍之內 output 對於每...