C++每日打卡

立方体类Box的实现,完成计算体积、计算表面积、输出结果等功能。

 

#include<iostream>
using namespace std;

class Box {
public:
void seta(float a)
{
len=a;
}
float getvolume()
{
return len*len*len;
}
float getarea()
{
return len*len*6;
}
void disp()
{
cout<<len*len*len<<" "<<len*len*6;
}
private:
float len;
};
int main( ){
float ab;
cin>>ab;
Box obj;
obj.seta( ab );
obj.getvolume( );
obj.getarea( );
obj.disp( );
return 0;
}

posted @ 2023-04-24 10:43  涨涨涨张  阅读(12)  评论(0编辑  收藏  举报