CJCoding With Joseph

Derived Class Adds a Method

The base class Vehicle stores a protected speed and has a getSpeed() method. Complete the derived class Car so it:
- has a constructor that takes a speed and passes it to the Vehicle constructor
- adds a new method doubleSpeed() that returns twice the speed

The provided main builds a Car and prints both values.

Expected Output:

30 60
Topics:
Inheritance
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.