CJCoding With Joseph

Account Protected Balance

The base class Account has a protected field balance set by its constructor. Because it is protected, the derived class Savings can access it. Complete Show() in Savings to print Balance:  followed by the balance value. Do NOT write a Main method.

When the tester creates a Savings with balance = 100 and calls Show(), the program prints:
Balance: 100

Expected Output:

Balance: 100
Topics:
Inheritance
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.