Question: JAVA Implement a class Account. An account has a balance, functions to add and withdraw money, and a function to inquire about the current balance.
JAVA
Implement a class Account. An account has a balance, functions to add and withdraw money, and a function to inquire about the current balance.
Pass a value into a constructor to set an initial balance.
If no value is passed the initial balance should be set to $0. Charge a $5 penalty if an attempt is made to withdraw more money than available in the account.
Create a class Bank. This bank has two objects as its data fields checking and
Savings of the type Account that was developed previously.
This class has four methods as follows:
deposit(double amount, String account)
withdraw(double amount, String account)
transfer(double amount, String account)
printBalances()
Here the account string is "S" or "C". For the deposit or withdrawal, it indicates which account is affected.
For a transfer it indicates the account from which the money is taken; the money is automatically transferred to the other account.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
