[置顶] 第五周-项目3-长方体类

/*    
* 程序的版权和版本声明部分    
* Copyright (c)2013, 烟台大学计算机学院学生    
* All rightsreserved.    
* 文件名称: array.cpp                               
* 作    者:杨绍宁                               
* 完成日期: 2012 年4 月  2日    
* 版本号: v1.0          
*     
* 输入描述:无    
* 问题描述:默认构造函数初始化,求体积,面积    
*/        
#include <iostream>
using namespace std;
class Bulk
{
public:
	Bulk(double a=1,double b=1,double c=1):length(a),width(b),heigth(c){}
	void get_value();  
	void show();
private:
	double length;
	double width;
	double heigth;
};
void Bulk::get_value()
{
	cout<<"请输入长,宽,高:";
	cin>>length>>width>>heigth;
}
void Bulk::show()
{
	double s,v;
	v=length*width*heigth;
	s=length*width*2+length*heigth*2+width*heigth*2;
	cout<<s<<"   "<<v<<endl;
}
int main()
{
	int i;
	Bulk b[5]={Bulk(2.3,4.5,6.7),Bulk(1.5,3.4),Bulk(10.5)};
	b[4].get_value();
	for(i=0;i<5;i++)
	{
		b[i].show();	
	}
	return 0;

}


结果:

感受:构造函数怎么就是b[3]啊,还有把b[i]放在show()中怎么写啊!!!求解?

 

posted @ 2013-04-02 22:35  坚固66  阅读(169)  评论(0编辑  收藏  举报