C++编程 将3×3二维数组转置,并输出
求大神帮忙看看我的程序,输出有问题:#include<iostream>usingnamespacestd;intmain(){inttemp;inta[3][3];co...
求大神帮忙看看我的程序,输出有问题:
#include<iostream>
using namespace std;
int main()
{
int temp;
int a[3][3];
cout<<"please input 9 numbers: "<<endl;
for(int i=0;i<3;i++)//用于输入内容
{
for(int j=0;j<3;j++)
{
cin>>a[i][j];
}
}
for(int m=0;m<3;m++)//用于输出原矩阵
{
for(int n=0;n<3;n++)
{
cout<<a[m][n]<<" ";
}
cout<<endl;
}
cout<<endl;
for(int p=0;p<3;p++)//用于将数组转置
{
for(int q=0;q<3;q++)
{
temp=a[p][q];
a[p][q]=a[q][p];
a[q][p]=temp;
}
}
for(int x=0;x<3;x++)//用于输出转置后矩阵
{
for(int y=0;y<3;y++)
{
cout<<a[x][y]<<" ";
}
cout<<endl;
}
return 0;
} 展开
#include<iostream>
using namespace std;
int main()
{
int temp;
int a[3][3];
cout<<"please input 9 numbers: "<<endl;
for(int i=0;i<3;i++)//用于输入内容
{
for(int j=0;j<3;j++)
{
cin>>a[i][j];
}
}
for(int m=0;m<3;m++)//用于输出原矩阵
{
for(int n=0;n<3;n++)
{
cout<<a[m][n]<<" ";
}
cout<<endl;
}
cout<<endl;
for(int p=0;p<3;p++)//用于将数组转置
{
for(int q=0;q<3;q++)
{
temp=a[p][q];
a[p][q]=a[q][p];
a[q][p]=temp;
}
}
for(int x=0;x<3;x++)//用于输出转置后矩阵
{
for(int y=0;y<3;y++)
{
cout<<a[x][y]<<" ";
}
cout<<endl;
}
return 0;
} 展开
2个回答
展开全部
转置算法不对
for(int p=0;p<3;p++)//用于将数组转置
{
for(int q=0;q<3;q++)
{
temp=a[p][q];
a[p][q]=a[q][p];
a[q][p]=temp;
}
}
换过来又换回去了
改成
for(int p=0;p<3;p++)//用于将数组转置
{
for(int q=0;q<p;q++)//这里有改动
{
temp=a[p][q];
a[p][q]=a[q][p];
a[q][p]=temp;
}
}
其他的应该没问题
for(int p=0;p<3;p++)//用于将数组转置
{
for(int q=0;q<3;q++)
{
temp=a[p][q];
a[p][q]=a[q][p];
a[q][p]=temp;
}
}
换过来又换回去了
改成
for(int p=0;p<3;p++)//用于将数组转置
{
for(int q=0;q<p;q++)//这里有改动
{
temp=a[p][q];
a[p][q]=a[q][p];
a[q][p]=temp;
}
}
其他的应该没问题
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询