CJCoding With Joseph

Deposit Into a Private Balance

Create a class Account with a private double balance that starts at 0. Add a Deposit(double amount) method that adds amount to the balance, and a GetBalance() method that returns it. Do not write a Main method.

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.