#include<iostream>
using namespace std;
int main()
{
int zero=0;
int a,b,c;
while(cin>>a>>b)
{
int A[a][b];
int i=0;
for(i;i<a;i++)
{
cin>>A[i][zero];
cin>>A[i][zero+1];
cin>>A[i][zero+2];
}
for(i=0;i<b;i++)
{
for(zero=0;zero<a;zero++)
{
cout<<A[zero][i]<<" ";
if(zero==1)
cout<<endl;
}
}
}
return 0;
}
測試AC 解答卻RE 感謝協助