C++, ACCORDING THE VEHICLE HEADER, FILL THE PART 1 OF THE CODE #ifndef _Vehicle_hh_ #define _Vehicle_hh_ class Vehicle { private: float speed; float mile; public: Vehicle();
FOR C++, ACCORDING THE VEHICLE HEADER, FILL THE PART 1 OF THE CODE
#ifndef _Vehicle_hh_
#define _Vehicle_hh_
class Vehicle {
private:
float speed;
float mile;
public:
Vehicle();
Vehicle(float, float);
float getSpeed();
float getMile();
void setSpeed(float);
void setMile(float);
void print();
};
#endif
(DEFINE FUNCTIONS CORRESPONDING TO VEHICLE HEADER CLASS IN PART 1 BELOW)
#include "Vehicle.hh"
#include "Ship.hh"
#include <iostream>
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 < 1).
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 ***
}
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)