标题:求助这个代码面积部分的主函数不会写,以及要在这个函数里加上const函数和析 ...
只看楼主
遗情处有诗章
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2017-3-10
结帖率:75%
 问题点数:0 回复次数:0 
求助这个代码面积部分的主函数不会写,以及要在这个函数里加上const函数和析构函数
程序代码:
// ConsoleApplication37.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;
class homepage {
public:
    homepage(string p, int h, int w);
    ~homepage()
    {
        cout << "delete";
    }
        void display();
    protected:
        string photo;
        int height;
        int width;

};
class area :public homepage
{
public:
    int getArea()
    {
        return (height*width);
    }
    void putout();
};
homepage::homepage(string p, int h, int w)
{
    photo =p;
    height = h;
    width = w;
}

void homepage::display()
{
    cout << "photo:" << photo << "," << "height:" << height << "," << "width:" << width << endl;
}
void area::putout()
{
    cout << "面积:" << ""<<endl;
}
int main()
{
    homepage h("qwertyui",12,11);
    h.display();
    system("pause");
    return 0;
}



[此贴子已经被作者于2017-10-22 15:11编辑过]

搜索更多相关主题的帖子: 面积 函数 string int void 
2017-10-22 15:10



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-481656-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.655756 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved