第三周项目4-长方柱类

/*
*程序的版权和版本声明部分:
*Copyright(c)2013,烟台大学计算机学院学生
*All rights reserved.
*文件名称:
*作者:王英华
*完成日期:2014年 3月 14日
*版本号:v1.0
*对任务及求解方法的描述部分:
*输入描述: length、width、height
*问题描述:求长方柱体积、表面积
*程序输出:volume、areas
*问题分析:略
*算法设计:略
*/
#include <iostream>
using namespace std;
class Bulk
{

public:
    void set();
    void c_volume();
    void c_areas();
private:
    double length;
    double width;
    double heigth;

};
void Bulk::set()
{
    double l,w,h;
    cout<<"请分别输入长、宽、高:"<<endl;
    cin>>l>>w>>h;
    length=l;
    width=w;
    heigth=h;
}
void Bulk::c_volume()
{
    double v;
    v=length*width*heigth;
    cout<<"体积为:"<<v;
}
void Bulk::c_areas()
{
    double a;
    a=(length*width+length*heigth+width*heigth)*2;
    cout<<"表面积为:"<<a;

}
int main()
{
    Bulk x,y,z;
    x.set();
    y.set();
    z.set();
    x.c_volume();
    y.c_volume();
    z.c_volume();
    x.c_areas();
    y.c_areas();
    z.c_areas();
    return 0;
}


运行结果:第三周项目4-长方柱类_第1张图片

心得体会:参照例题做的。。。

你可能感兴趣的:(第三周项目4-长方柱类)