c++程序设计编写程序,实现矩阵(3行3列)的转置(即行列互换)

 我来答
evil0angel
2010-04-23 · TA获得超过112个赞
知道答主
回答量:97
采纳率:0%
帮助的人:65.7万
展开全部
只是3行3列是么?
#include <iostream>
using namespace std;
void main()
{
double a[3][3];//矩阵3行3列
double b[3][3];//转置之后的矩阵
int i,j;
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
cin>>a[i][j];
}
}
for(i=0;i<3;i++)
{
for(j=i;j<3;j++)
{
b[i][j]=a[j][i];
b[j][i]=a[i][j];
}
}
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
cout<<b[i][j]<<" ";
}
cout<<"\n";
}
}
唔……完结
kutpbpb
2010-04-23 · TA获得超过528个赞
知道小有建树答主
回答量:332
采纳率:0%
帮助的人:386万
展开全部
//程序一改正,可以运行!
#include<iostream>
using namespace std;
#define N 3
int main()
{
int a[N][N],i,j,temp;
cout<<"\nEnter value:\n";
for(i=0;i<N;i++)
for(j=0;j<N;j++)
cin>>a[i][j];
for(i=0;i<N;i++)
for(j=0;j<i;j++)
{
temp=a[i][j];
a[i][j]=a[j][i];
a[j][i]=temp;

}
cout<<"\nPut value:\n";
for(i=0;i<N;i++)
{
for(j=0;j<N;j++)
cout<<a[i][j]<<" ";
cout<<endl;
}
return 0;
}
希望kutpbpb的回答能对你有所帮助!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tobetterlife
推荐于2018-04-05 · TA获得超过741个赞
知道小有建树答主
回答量:188
采纳率:0%
帮助的人:253万
展开全部
经过测试,pass

#include <iostream>
using namespace std;

void rotateRect(int arrx [3][3])
{
int temp;
for(int m=0;m<3;m++)
for(int n=0;n<m;n++)
{
temp=arrx[m][n];
arrx[m][n]=arrx[n][m];
arrx[n][m]=temp;
}

}

void main ()
{
int arr[3][3];
cout<<"please input 9 nums:\n";
for(int i=0;i<3;i++)
for(int j=0;j<3;j++)
cin>>arr[i][j];

cout<<"The origin rect is:\n";
for( i=0;i<3;i++)
{
for(int j=0;j<3;j++)
cout<<arr[i][j]<<" ";
cout<<"\n";
}

rotateRect(arr);

cout<<"After rotate the origin rect is:\n";
for( i=0;i<3;i++)
{
for(int j=0;j<3;j++)
cout<<arr[i][j]<<" ";
cout<<"\n";
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式