xt8-6-2.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. class Box
  4. {public:
  5.   void get_value();
  6.   void volume();
  7.   void display();
  8.  public:
  9.   float lengh;
  10.   float width;
  11.   float height;
  12.   float vol;
  13.   };
  14. void Box::get_value()
  15. { cout<<"please input lengh, width,height:";
  16.   cin>>lengh;
  17.   cin>>width;
  18.   cin>>height;
  19. }
  20. void Box::volume()
  21. { vol=lengh*width*height;}
  22. void Box::display()
  23. { cout<<vol<<endl;}
  24. int main()
  25. {Box box1,box2,box3;
  26.  box1.get_value();
  27.  box1.volume();
  28.  cout<<"volmue of bax1 is ";
  29.  box1.display();
  30.  box2.get_value();
  31.  box2.volume();
  32.  cout<<"volmue of bax2 is ";
  33.  box2.display();
  34.  box3.get_value();
  35.  box3.volume();
  36.  cout<<"volmue of bax3 is ";
  37.  box3.display();
  38.  return 0;
  39. }