โ Back to Encapsulation
Question 457
Deposit Into a Private Balance
Deposit Into a Private Balance
Create a classAccountwith aprivate double balancethat starts at 0. Add aDeposit(double amount)method that addsamountto the balance, and aGetBalance()method that returns it. Do not write aMainmethod. After depositing 100 then 50 the program prints: 150
Expected Output:
150
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.