C++面向对象编程解决三阶矩阵相加减

/*此处用面向对象编程*/

#include<iostream>
#include<string.h>
using namespace std;
class Matrices
{
private:
    int mat[3][3];
public:
    Matrices();
    void input()
    {
        for(int i=0; i<3; i++)
        {
            for(int j=0; j<3; j++)
            {
                cin>>mat[i][j];
            }
        }
    }
    friend Matrices operator+(Matrices &,Matrices &);
    friend Matrices operator-(Matrices &a,Matrices &b);
    friend ostream &operator <<(ostream &output,Matrices &);
    friend istream &operator >>(istream &input,Matrices &);
};

Matrices ::Matrices()
{
    memset(mat,0,sizeof(mat));
}

istream &operator >>(istream &input,Matrices &a)
{
    for(int i=0; i<3; i++)
    {
        for(int j=0; j<3; j++)
        {
            input>>a.mat[i][j];
        }
    }
    return input;
}

ostream &operator <<(ostream &output,Matrices &a)
{
    for(int i=0; i<3; i++)
    {
        for(int j=0; j<3; j++)
        {
            output<<a.mat[i][j]<<"   ";
        }
        cout<<endl;
    }
    return output;
}

Matrices operator+(Matrices &a,Matrices &b)
{
    Matrices c;
    for(int i=0; i<3; i++)
    {
        for(int j=0; j<3; j++)
        {
            c.mat[i][j]=a.mat[i][j]+b.mat[i][j];
        }
    }
    return c;
}

Matrices operator-(Matrices &a,Matrices &b)
{
    Matrices c;
    for(int i=0; i<3; i++)
    {
        for(int j=0; j<3; j++)
        {
            c.mat[i][j]=a.mat[i][j]-b.mat[i][j];
        }
    }
    return c;
}

int main()
{
    cout<<"请输入需要进行的三阶加法运算(+)或减法运算(-)"<<endl;
    char c;
    Matrices A,B,C;
    while(cin>>c)
    {
        if(c=='+'||c=='-')
        {
            if(c=='+')
            {
                cout<<"转换成功!即将进行加法运算"<<endl;
                cout<<"请依次输入矩阵1,以回车换行(确认)"<<endl;
                cin>>A;
                cout<<"请依次输入矩阵2,以回车换行(确认)"<<endl;
                cin>>B;
                C=A+B;
                cout<<"运算成功!两矩阵的和为:"<<endl;
            }
            else
            {
                cout<<"转换成功!即将进行减法运算"<<endl;
                cout<<"请依次输入矩阵1,以回车换行(确认)"<<endl;

                cin>>A;
                cout<<"请依次输入矩阵2,以回车换行(确认)"<<endl;
                cin>>B;
                C=A-B;

                cout<<"运算成功!两矩阵的差为:"<<endl;
            }
            cout<<endl;
            cout<<C;
            cout<<"可输入'+'或'-'继续进行运算"<<endl;
        }
        else cout<<"数据格式错误!请重新输入:"<<endl;
    }
}


/*

测试数据

1 1 1
2 2 2
3 3 3

1 1 1
2 2 2
3 3 3
*/

 

转载于:https://www.cnblogs.com/-beyond/p/5621225.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值