首页 > 其他 > 详细

第五次作业

时间:2018-06-06 00:29:08      阅读:230      评论:0      收藏:0      [点我收藏+]

第一题:题目要求:

技术分享图片

代码:

//chip.h
#include<iostream>
#pragma once
using namespace std;
class chip
{
    public:
        chip(int a,int b):m(a),n(b)    {};
        int geta(){return m;}
        int getb(){return n;}
        int show();
    private:
        int m;
        int n;
};
class chipa:public chip
{
    public:
        chipa(int a ,int b):chip(a,b){};
        int showa();
        
    
};
class chipb:public chip
{
    public:
        chipb(int a,int b):chip(a,b){};
        int showb();
};
class chipc:public chip
{
    public:
        chipc(int a,int b):chip(a,b){};
        int showc();
};
//chip.cpp
#include<iostream>
#include"chip.h"
using namespace std;
int chip::show()
{
    return m+n;
}
int chipa::showa()
{
    cout<<"chipa:"<<endl;
    cout<<"m+n="<<chip::show()<<endl;
    cout<<"m-n=";
    return geta()-getb();
}
int chipb::showb()
{
    cout<<"chipb:"<<endl;
    cout<<"m+n="<<chip::show()<<endl;
    cout<<"m*n=";
    return geta()*getb();
}
int chipc::showc()
{
    cout<<"chipc:"<<endl;
    cout<<"m+n="<<chip::show()<<endl;
    cout<<"m/n=";
    return geta()/getb();
}
#include <iostream>
#include"chip.h"
using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
    chipa A(1, 2);
    chipb B(1, 2);
    chipc C(1, 2);
    cout << "m=1  n=2" << endl;
    cout << A.showa() << endl;
    cout << B.showb() << endl;
    cout << C.showc() << endl;
    return 0;
}

 

运行图:

技术分享图片

第五次作业

原文:https://www.cnblogs.com/20178303034nb/p/9142596.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!