zoukankan      html  css  js  c++  java
  • 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
    */
    
  • 相关阅读:
    可以说微软做的用户体验还不如这家泡菜厂
    如何在Visual Studio 工程之间共享静态内容 (js, css, img, etc.)
    使用JavaScript序列化任意复杂的对象
    使用ReSharper打造团队代码检查流程
    分享我们项目中基于EF事务机制的架构
    3句英文让你成为专业的欧美外包开发者
    linux 开机自启动脚本
    nginx 配置简单网站项目(linux下)
    python2 与 python3 如何实现共存
    centos 安装mysql
  • 原文地址:https://www.cnblogs.com/-beyond/p/5621225.html
Copyright © 2011-2022 走看看