第五周项目训练4 长方柱类

来源:互联网 发布:ubuntu终端用户名修改 编辑:程序博客网 时间:2024/06/15 13:44

/*   
*Copyright (c)2016,烟台大学计算机与控制工程学院   
*All rights reserved.   
*文件名称:main.cpp   
*作    者:王玙璠
*完成日期:2016年4月7日   
*版 本 号:v1.0   

问题描述:
编写基于对象的程序,求3个长方柱(Bulk)的体积。数据成员包括长(length)、宽(width)、高(heigth)、体积,要求设计成员函数实现下面的功能:
  (1)由键盘输入3个长方柱的长、宽、高;
  (2)计算长方柱的体积(volume)和表面积(areas);
  (3)输出这3个长方柱的体积和表面积;


程序:

#include <iostream>

using namespace std;
class Bulk
{
public:
    void get_value();
    void display();
private:
    float lengh;
    float width;
    float height;
};


void Bulk::get_value()
{
    cout<<"please input lengh, width,height:";
    cin>>lengh;
    cin>>width;
    cin>>height;
}


void Bulk::display()
{
    cout<<"The volume is: "<<lengh*width*height<<endl;
    cout<<"The surface area is: "<<2*(lengh*width+lengh*height+width*height)<<endl;
}


int main()
{
    Bulk b1,b2,b3;


    b1.get_value();
    cout<<"For bulk1: "<<endl;
    b1.display();


    b2.get_value();
    cout<<"For bulk2: "<<endl;
    b2.display();


    b3.get_value();
    cout<<"For bulk3: "<<endl;
    b3.display();
    return 0;

}


运行结果:



0 0
原创粉丝点击