第五周实验报告3

来源:互联网 发布:动态宣传图制作软件 编辑:程序博客网 时间:2024/05/21 15:41
 

/* (程序头部注释开始)
* 程序的版权和版本声明部分
* Copyright (c) 2011, 烟台大学计算机学院学生
* All rights reserved.
* 文件名称:                             
* 作    者:            赵桐辉                 
* 完成日期:        2012 年       3月   20     日
* 版 本 号:         

* 对任务及求解方法的描述部分
* 输入描述:
* 问题描述:
* 程序输出:
* 程序头部的注释结束
*/

#include<iostream>
using namespace std;
class Box
{
public:
 Box(int len=10,int w=10,int h=10):length(len),width(w),heigth(h){}
    int volume();
    int area();
 void set_Box();
private:
    int length;
    int width;
    int heigth;
};
int main()
{
 Box box[5]={
  Box(8,12,15),
   Box(12,13,20),
   Box(14,21,26),
   Box(),
   Box()};
  for(int i=0;i<4;i++)
   cout<<"第"<<i+1<<"个长方柱体积为:"<<box[i].volume()<<"表面积为:"<<box[i].area()<<endl;
 
  box[4].set_Box();
  cout<<"第5个长方形体积为:"<<box[4].volume()<<"表面积为:"<<box[4].area()<<endl;
  return 0;
}

void Box::set_Box()
{
 cout<<"请输入第5个长方形的长、宽、高:";
 cin>>length;
 cin>>width;
 cin>>heigth;
 
}

int Box:: volume()
{   int v;
v=length*width*heigth;
return v;

}

int Box::area()
{
 int s;
 s=2*(length*width+length*heigth+width*heigth);
 return s;
}

 

原创粉丝点击