标签:style blog io color for sp strong 数据 div
描述求一个三行三列的转置矩阵。
2 1 2 3 4 5 6 7 8 9 2 3 4 5 6 7 8 9 1
1 4 7 2 5 8 3 6 9 2 5 8 3 6 9 4 7 1
// 转 好简洁 #include<stdio.h> int main(){ int num; scanf("%d",&num); while(num--){ int a[9]; for(int i=0;i<9;i++){ scanf("%d",&a[i]); } for(int i=0;i<3;i++){ printf("%d ",a[i]); printf("%d ",a[i+3]); printf("%d\n",a[i+6]); } } }
标签:style blog io color for sp strong 数据 div
原文地址:http://www.cnblogs.com/imwtr/p/4069435.html