CJCoding With Joseph

Speedometer Class

Create a class Speedometer with a public int field Speed (starts at 0). Add Accelerate(int amount) which increases Speed, and Brake(int amount) which decreases Speed but never lets it drop below 0. Do not write a Main method.

After Accelerate(50) then Brake(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.