C语言——二维数组转置 问题描述: 输入一个二行三列的数组,把它转置成三行二列的数组。 代码: # include <stdio.h> int main() { int a[2][3]; int b[3][2]; int i, j; for(i = 0;i < 2;