โ Back to Interfaces
Question 609
Model a Bank Account With an Interface
Model a Bank Account With an Interface
The interfaceIBankAccountdeclares aBalanceproperty and aDeposit(int amount)method. CompleteDepositso it adds the amount to the private_balancefield. Do NOT write aMainmethod. 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.