CJCoding With Joseph

Model a Bank Account With an Interface

The interface IBankAccount declares a Balance property and a Deposit(int amount) method. Complete Deposit so it adds the amount to the private _balance field. Do NOT write a Main method.

After depositing 100 then 50 the program prints:
150

Expected Output:

150
Topics:
Interfaces
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.