长方体的体积和面积


 
  
/*
*Copyright (c) 2015,烟台大学计算机学院
*All rights reserved.
*文件名称:text.cpp
*作者:汤善晔
*完成日期:2016年6月7日
*版本号:v1.0
*
*问题描述:球长方体的面积和体积
*输入描述:长方体的长宽高
*程序输出:长方体的面积和体积
*/
#include

using namespace std;
class Bulk
{
public:
    Bulk(double l=1,double w=1,double h=1)
    {
        length=l;
        width=w;
        height=h;
    }
    void get_value();
    void output();
private:
    double length;
    double width;
    double height;
}b;
void Bulk::get_value()
{
    double l,w,h;
    cin>>l>>w>>h;
    length=l;
    width=w;
    height=h;
}
void Bulk::output()
{
    cout<<"长方柱体积"< }
int main()
{




   b.get_value();
   b.output();

}

长方体的体积和面积_第1张图片

你可能感兴趣的:(c++,c语言)