11606: 矩阵转置0
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:0
Description
输出已知矩阵的转置矩阵(行与列的数量相同 )
The old array and new array should share the same space.
At the same time your program should compute the numbers that more than 60.
Input
4 //矩阵的维度
71 72 73 74 //4×4的数据
5 76 7 8
9 10 71 72
13 14 15 76
Output
71 5 9 13 //转置矩阵
72 76 10 14
73 7 71 15
74 8 72 76
8//大于60的数目
Sample Input Copy
4
71 72 73 74
5 76 7 8
9 10 71 72
13 14 15 76
Sample Output Copy
71 5 9 13
72 76 10 14
73 7 71 15
74 8 72 76
8