โ Back to Classes
Question 439
Speedometer Class
Speedometer Class
Create a classSpeedometerwith a public int fieldSpeed(starts at 0). AddAccelerate(int amount)which increasesSpeed, andBrake(int amount)which decreasesSpeedbut never lets it drop below 0. Do not write aMainmethod. AfterAccelerate(50)thenBrake(20)the program prints: 30
Expected Output:
30
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.