FOR C++, PLASE SEND THE ANSER IN 30 MINUTES. ACCORDING TO CODE BELOW, #include "Vehicle.hh" class Ship : public Vehicle { private : int passenger; public : Ship (); Ship ( int , float , float ); int...


FOR C++, PLASE SEND THE ANSER IN 30 MINUTES.


ACCORDING TO CODE BELOW,



#include
"Vehicle.hh"



class
Ship:
public
Vehicle
{



private:



int
passenger;



public:



Ship();



Ship(int,
float,
float);



int
getPassenger();



void
setPassenger(int);



void
print();


};



(DEFINE FUNCTIONS CORRESPONDING TO SHIP HEADER CLASS IN PART 2 BELOW)



#include
"Vehicle.hh"



#include
"Ship.hh"



#include



using
namespace
std;



// *** DEFINE --VEHICLE-- FUNCTIONS FOR PART 1 ***



// *** DEFINE --SHIP--    FUNCTIONS FOR PART 2 ***





void
reduceSpeed(Ship*,
float);



void
takePassenger(Ship*,
int);




int
main() {




return
0;


}



// reduce the speed of ship given in percentage (0 < percentage=""><>



void
reduceSpeed(Ship
*s,
float
percentage) {


  // *** FILL THIS FUNCTION FOR PART 3 ***


}



// takes the number of passengers to the ship



void
takePassenger(Ship
*s,
int
pas) {


  // *** FILL THIS FUNCTION FOR PART 4 ***


}



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here