PackageBankAccount; Public classBankAccount {Private Doublebalance; PublicBankAccount (Doubleinitial balance) {Balance=initial balance; } PublicBankAccount () {Balance=0; } Public voidSavingDoubleDeposit amount) {Balance+=Deposit amount; System.out.println ("You deposited the" + Deposit amount + "dollar, the cash balance is:" +balance); } Public voidWithdrawalDoublewithdrawal amount) { if(Balance >withdrawal amount) {Balance-=amount of withdrawal; System.out.println ("You have taken the" + withdrawal amount + "dollar, the cash balance is:" +balance); } Else{System.out.println ("Your balance is not enough to withdraw money!" "); } } Public voidView balance () {System.out.println ("Your balance:" +balance); } Public Static voidMain (string[] args) {BankAccount my account=NewBankAccount (10); My account. Withdrawals (100); My account. Save Money (10000); My account. View balance (); My account. Withdrawals (2000); }}
JAVA Bank Deposit and withdrawal