/*烟台大学计算机学院学生
*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;
}
心得体会:从基础学习。从头开始