15_3.cpp
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 0k
Category:

CSharp

Development Platform:

Visual C++

  1. //15_3
  2. #include <iostream.h>
  3. class Boat;
  4. class Car{
  5. public:
  6.   Car(int j){ size =j; }
  7.   int Get(){ return size; }
  8. protected:
  9.   int size;
  10. };
  11. class Boat{
  12. public:
  13.   Boat(int j){ size =j; }
  14.   int Get(){ return size; }
  15. protected:
  16.   int size;
  17. };
  18. int Leisure(int time, Car& aobj, Boat& bobj)
  19. {
  20.   return time * aobj.Get() * bobj.Get();
  21. }
  22. void main()
  23. {
  24.   Car c1(2);
  25.   Boat b1(3);
  26.   int time =4;
  27.   cout <<Leisure(time,c1,b1);
  28. }