CJCoding With Joseph

Odometer Class

Create a class Odometer with a public double field Miles (starts at 0) and an AddTrip(double distance) method that adds the trip distance onto Miles. Do not write a Main method.

After trips of 12.5 and 7.5 the program prints:
20

Expected Output:

20
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.