第八周项目2用对象数组操作长方柱类

来源:互联网 发布:烘焙箱怎么做饼干知乎 编辑:程序博客网 时间:2024/06/05 11:58
/**Copyright(c) 2016.烟台大学计算机与控制工程学院*ALL rights  reserved.*文件名称:test.cpp*作者:杨驰*完成日期:2016年4月19*问题描述:编写基于对象的程序,求5个长方柱的体积和表面积。长方柱类Bulk的数据成员包括长(length)、宽(width)、高(heigth)       */#include<iostream>using namespace std;class Bulk{public:    Bulk(double x=1.0,double y=1.0,double z=1.0):length(x),width(y),heigth(z){}    void get_value();    void display();private:    double length;    double width;    double heigth;};void Bulk::get_value(){    cout<<"please input length、width、heigth:";    cin>>length>>width>>heigth;}void Bulk::display(){   cout<<"The volume is:"<<length*width*heigth<<endl;   cout<<"The area is:"<<2*(length*width+length*heigth+heigth*width)<<endl;}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<<"关于b["<<i<<"]"<<endl;        b[i].display();     }     return 0;}

0 0
原创粉丝点击