现在有长方形类(rectangle),请以此为基类构建长方体类(cuboid)并实现求表面积的area方法。
输入描述:
输入三个整数分别表示长宽高。
输出描述:
第一行输出一个整数表示长方体的底面积。第二行输出一个整数表示长方体的表面积。
示例1
输入
3 2 1
输出
6 22
加载中...
#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 getlength(){ return length; } int getwidth(){ return width; } 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 22