OJ A

/*烟台大学计算机学院学生
*All right reserved.
*文件名称:OJA<span style="font-family: Arial, Helvetica, sans-serif;"> 长方形继承自矩形</span>
*作者:孙玲倩
*完成日期:2014年7月15日
*版本号:v1.0
*对任务及求解方法的描述部分:
*我的程序:
*/
#include<iostream>
using namespace std;
class Rectangle
{
    private:
    int length;
    int width;
    public:
    Rectangle();
    Rectangle(int l,int w);
    int getArea();
};
class Bulk:public Rectangle
{
    public:
    Bulk();
    Bulk(int l,int w,int h);
    int getVolume();
    private:
    int height;
};
Rectangle::Rectangle():length(0),width(0){}
Rectangle::Rectangle(int l,int w):length(l),width(w){}
int Rectangle::getArea()
{
    return length*width;
}
Bulk::Bulk():Rectangle(0,0),height(0){}
Bulk::Bulk(int l,int w,int h):Rectangle(l,w),height(h){}
int Bulk::getVolume()
{
    return getArea()*height;
}
int main()
{
    int x,y,z;
    cin>>x>>y>>z;
    Bulk b(x,y,z);
    cout<<b.getVolume()<<endl;
    return 0;
}
心得体会:从基础学习。从头开始

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值