CJCoding With Joseph

High Score Tracker

Create a class ScoreBoard with a public int field HighScore (starts at 0) and a Submit(int score) method that updates HighScore only when the new score is greater than the current one. Do not write a Main method.

After submitting 50, 30, then 80, the program prints:
80

Expected Output:

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