NYOJ 29 求转置矩阵问题

 1 #include<stdio.h>
 2 #include<stdlib.h>
 3 int main()
 4 {
 5     int n,i,j;
 6     int a[3][3];
 7     scanf("%d",&n);
 8     while(n--)
 9     {
10         for(i=0;i<3;i++)
11         for(j=0;j<3;j++)
12         scanf("%d",&a[i][j]);
13         for(i=0;i<3;i++)
14         {
15             for(j=0;j<3;j++)
16             printf("%d ",a[j][i]);
17             putchar('\n');
18         }
19     }
20     //system("pause");
21     return 0;
22 }       

posted on 2012-08-06 19:50  mycapple  阅读(278)  评论(0编辑  收藏  举报

导航