项目四--长方体类,

/*       
* 程序的版权和版本声明部分       
* Copyright (c)2013, 烟台大学计算机学院学生       
* All rightsreserved.       
* 文件名称: circlee.cpp                                  
* 作    者:董万鹏                                   
* 完成日期:2013年3月16日       
* 版本号: v1.0             
* 输入描述:       
* 问题描述:     
*/      

#include 
using namespace std;
class Bulk
{
public:
	float volume();
	float areas();
	void set_data();
	void output_data();
private:
	double length;
	double width;
	double heigth;
};
void Bulk::set_data()
{
	cout<<"请输入数据(长、宽、高):"<>length>>width>>heigth;
}
float Bulk::volume()
{
	return length*width*heigth;
}
float Bulk::areas()
{
    return ((length*width)+(width*heigth)+(length*heigth))*2;

}
void Bulk::output_data()
{
	cout<<"长方体的体积是:"<

你可能感兴趣的:(项目四--长方体类,)