C语言:输入一个2行3列的数组,求其转置
#include"stdio.h"int main(){ int a[2][3],b[3][2],i,j; for(i=0;i<2;i++) { for(j=0;j<3;j++) { scan
C语言:输入一个2行3列的数组,求其转置