#include<iostream>
using namespace std;
int main()
{
int di[3][3];
for(int e=1;e<=5;e++)
{
for(int f=1;f<=6;f++)
{
cin>>di[f][e];
}
}
for(int e=1;e<=5;e++)
{
for(int f=1;f<=6;f++)
{
cout<<di[f][e]<<" ";
}
cout<<endl;
}
return 0;
}
| 歡迎光臨 竹園論壇 (http://forum.tfcis.org/) | Powered by Discuz! X3.2 |