CJCoding With Joseph
15per day

Bank Account with Withdraw

Create a class BankAccount with a starting balance, Deposit(amount), Withdraw(amount) (only subtract if the balance is enough, otherwise do nothing), and GetBalance(). Do NOT write a Main method.

Start 100, deposit 50, withdraw 200 (too much → ignored), withdraw 30 → balance 120.

Expected Output:

120
Topics:
Classes
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.