xt8-6-1.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.   float volume();
  7.   void display();
  8.  public:
  9.   float lengh;
  10.   float width;
  11.   float height;
  12.   };
  13. void Box::get_value()
  14. { cout<<"please input lengh, width,height:";
  15.   cin>>lengh;
  16.   cin>>width;
  17.   cin>>height;
  18. }
  19. float Box::volume()
  20. { return(lengh*width*height);}
  21. void Box::display()
  22. { cout<<volume()<<endl;}
  23. int main()
  24. {Box box1,box2,box3;
  25.  box1.get_value();
  26.  cout<<"volmue of bax1 is ";
  27.  box1.display();
  28.  box2.get_value();
  29.  cout<<"volmue of bax2 is ";
  30.  box2.display();
  31.  box3.get_value();
  32.  cout<<"volmue of bax3 is ";
  33.  box3.display();
  34.  return 0;
  35. }