โ Back to Inheritance
Question 289
Derived Class Adds a Method
Derived Class Adds a Method
The base classVehiclestores a protected speed and has a getSpeed() method. Complete the derived classCarso it: - has a constructor that takes a speed and passes it to the Vehicle constructor - adds a new methoddoubleSpeed()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.