โ Back to Classes
Question 34
Default and Parameterized Constructor
Default and Parameterized Constructor
Create a class Car with a private int speed. Requirements: 1. Default constructor sets speed to 0 2. Parameterized constructor sets speed to the value passed in 3. getSpeed() returns speed and must be const Do NOT write a main function.
Expected Output:
0 50
Topics:
Classes
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.