现在有长方形类(rectangle),请以此为基类构建长方体类(cuboid)并实现求体积的getvolume方法。
输入描述:
输入三个整数分别表示长宽高。
输出描述:
输出长方体的体积。
示例1
输入
3 2 1
输出
6
加载中...
#include
using namespace std; class rectangle{ private: int length,width; public: rectangle(int x,int y){ length=x; width=y; } void set(int x,int y){ length=x; width=y; } int area(){ return length*width; } }; class cuboid:public rectangle{ private: int height; public: // write your code here... }; int main(){ int x,y,z; cin>>x>>y>>z; cuboid a(x,y,z); cout<
3 2 1
6