您的位置:首页 > 其它

有两个矩阵a和b 均为2行3列 求两个矩阵之和第四题

2015-05-11 23:37 253 查看
#include <iostream>
using namespace std;
class Matrix                                          //
定义 Matrix 类
{public:
Matrix();                                          //
默认构造函数
friend Matrix operator+(Matrix &,Matrix &);        //重
载运算符“+”
void input();                                      //
输入数据函数
void display();                                    //
输出数据函数
private:
int mat[2][3];
};
Matrix::Matrix()                                      //
定义构造函数
{for(int i=0;i<2;i++)
for(int j=0;j<3;j++)
mat[i][j]=0;
}
Matrix operator+(Matrix &a,Matrix &b)                //
定义重载运算符“+”
函数
{Matrix c;
for(int i=0;i<2;i++)
for(int j=0;j<3;j++)
{c.mat[i][j]=a.mat[i][j]+b.mat[i][j];}
return c;
}
void Matrix::input()                                   //
定义输入数据函数
{cout<<"input value of matrix:"<<endl;
for(int i=0;i<2;i++)
for(int j=0;j<3;j++)
cin>>mat[i][j];
}
void Matrix::display()                                //定
义输出数据函数
{for (int i=0;i<2;i++)
{for(int j=0;j<3;j++)
{cout<<mat[i][j]<<" ";}
cout<<endl;}
}
int main()
{Matrix a,b,c;
a.input();
b.input();
cout<<endl<<"Matrix a:"<<endl;
a.display();
cout<<endl<<"Matrix b:"<<endl;
b.display();
c=a+b;                                         //用重
载运算符“+”实现两个
矩阵相加
cout<<endl<<"Matrix c = Matrix a + Matrix b :"<<endl;
c.display();
return 0;
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: