解题思路:
注意事项:
参考代码:
#include<iostream>
using namespace std;
int main()
{
int a[3][3];
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
cin >>a[i][j];
for(int i=0;i<3;i++)
for(int j=0;j<=i;j++)
if(i!=j)
{
int t=a[i][j];
a[i][j]=a[j][i];
a[j][i]=t;
}
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
{
cout <<a[i][j] <<" ";
if(j==2) cout <<endl;
}
return 0;
}
0.0分
0 人评分