#include<iostream>
using namespace std;
class Bulk
{
private:double length;//长
double width;//宽
double heigth;//高
public:
Bulk(double x=1.0,double y=1.0,double z=1.0):length(x),width(y),heigth(z){}//默认构造函数
void get_value();//对长方体数据进行赋值
void output();//输出长方体数据
};
int main()
{
Bulk b[5]={Bulk(2.3,4.5,6.7),Bulk(1.5,3.4),Bulk(10.5)};
b[4].get_value();
for(int i=0;i<5;i++){
cout<<"第"<<i+1<<"个长方体";
b[i].output();
cout<<endl;
}//下面分别输出这5 个长方柱的体积和表面积
return 0;
}
void Bulk::get_value(){
cout<<"请依次输入长方体的长宽高:";
cin>>length>>width>>heigth;
}
void Bulk::output(){
cout<<"体积为:"<<length*width*heigth<<endl;
cout<<"表面积为"<<2*(length*width+length*heigth+width*heigth);
}
长方体……又见长方体,各种定义数据方式
最新推荐文章于 2021-05-01 15:52:08 发布