โ Back to Classes
Question 113
Set and Get a Speed
Set and Get a Speed
Create a class named Vehicle with one private member: int speed. Requirements: 1. Create a default constructor Vehicle() that sets speed to 0. 2. Create a public setter setSpeed(int newSpeed) that updates speed. 3. Create a public getter getSpeed() that returns speed. IMPORTANT: Do NOT write a main method. A hidden Main will create a Vehicle, call setSpeed(45), then print getSpeed(). Expected Output: 45
Expected Output:
45
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.