CJCoding With Joseph

Guarding Against Negatives

The Account class has a private field balance. Add a Balance property whose get returns the field and whose set stores value only when it is 0 or greater; a negative value must be stored as 0. Do NOT write a Main method.

For Balance = -50 the program prints:
0

For Balance = 100 the program prints:
100

Expected Output:

0
Topics:
Encapsulation
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.