长方柱类

问题及描述;

/*
 *Copyright (c) 2016,烟台大学计算机学院
 *All rights reserved.
 *文件名称;test.cpp
 *作者;邱凯
 *完成日期;2016年3月28号
 *版本号;v6.0
 *问题描述;   长方柱类
 *输入描述;  无
 *输出描述; 输出答案

*/
#include <iostream>
using namespace std;
class Bulk
{
public:
    void get_value();
    void display();
private:
    void get_volume();
    void get_area();
    float lengh;
    float width;
    float height;
    float volume;
    float area;
};

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

void Bulk::get_volume()
{
    volume=lengh*width*height;
}

void Bulk::get_area()
{
    area=2*(lengh*width+lengh*height+width*height);
}

void Bulk::display()
{

    cout<<"The volume is: "<<volume<<endl;
    cout<<"The surface area is: "<<area<<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;
}

长方柱类_第1张图片

你可能感兴趣的:(长方柱类)