1154: 零起点学算法61——矩阵转置
Time Limit: 1 Sec Memory Limit: 64 MB 64bit IO Format: %lldSubmitted: 1324 Accepted: 698[][][]Description
现要求你把一个矩阵行列转置后输出,注意行数和列数可能不相同的。
Input
多组测试数据,每组测试数据先在一行输入n 和m ,表示这个矩阵的行数和列数(1 < n,m <= 10)
然后是n行m列的一个矩阵
Output
对于每组测试数据输出转置后的矩阵
Sample Input
3 21 23 45 6
Sample Output
1 3 52 4 6
Source
1 #include2 int main(){ 3 int n,m,a[10][10],b[10][10]; 4 while(scanf("%d%d",&n,&m)!=EOF){ 5 6 for(int i=0;i