← Back to Classes
Question 222
Bank Account with Withdraw
Bank Account with Withdraw
Create a classBankAccountwith a starting balance,Deposit(amount),Withdraw(amount)(only subtract if the balance is enough, otherwise do nothing), andGetBalance(). 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.