楼上的有qq不
具体细节自己多看看吧:
#include "stdio.h"
#define LOW 3
#define COL 4
void M(int A[LOW][COL],int B[LOW][COL])
{
int i,j;
for(i=0;i<LOW;i++)
for(j=0;j<COL;j++)
B[j][i]=A[i][j];
}
main()
{
int i,j;
int A[LOW][COL],B[LOW][COL];
for(i=0;i<LOW;i++)
for(j=0;j<COL;j++)
scanf("%d",&A[i][j]);
M(A,B);
for(i=0;i<COL;i++)
{
for(j=0;j<LOW;j++)
printf("%3d",B[i][j]);
printf("\n");
}
getch();
}