Can someone continue and fix my file?? Balance? Number of deposits this month? Number of withdrawals Design an abstract class named BankAccount to hold the following data for a bank account: ? Annual...

Can someone continue and fix my file?? Balance? Number of deposits this month? Number of withdrawals

Design an abstract class named BankAccount to hold the following data for a bank account:


? Annual interest rate


? Monthly service charges



The class should have the following methods:



Constructor:


The constructor should accept arguments for the balance and annual interest rate.



Deposit:


A method that accepts an argument for the amount of the deposit. The method should add the argument to the account balance. It should also increment the variable holding the number of deposits.



Withdrawal:


A method that accepts an argument for the amount of the withdrawal. The method should subtract the argument from the balance. It should also increment the variable holding the number of withdrawals.



calcInterest:


A method that updates the balance by calculating the monthly interest earned by the account, and adding this interest to the balance. This is performed by the following formulas:



Monthly Interest Rate = (Annual Interest Rate / 12)


Monthly Interest = Balance * Monthly Interest Rate


Balance = Balance + Monthly Interest



monthlyProcess:


A method that subtracts the monthly service charges from the bal- ance, calls the calcInterest method, and then sets the variables that hold the number of withdrawals, number of deposits, and monthly service charges to zero.



Next, design a SavingsAccount class that extends the BankAccount class. The SavingsAccount class should have a status field to represent an active or inactive account. If the balance of a savings account falls below $25, it becomes inactive. (The status field could be a boolean variable.) No more withdrawals can be made until the balance is raised above $25, at which time the account becomes active again. The savings account class should have the following methods:



withdraw:


A method that determines whether the account is inactive before a withdrawal is made. (No withdrawal will be allowed if the account is not active.) A withdrawal is then made by calling the superclass version of the method.



deposit:


A method that determines whether the account is inactive before a deposit is made. If the account is inactive and the deposit brings the balance above $25, the account becomes active again. The deposit is then made by calling the superclass version of the method.



monthlyProcess:


Before the superclass method is called, this method checks the number of withdrawals. If the number of withdrawals for the month is more than 4, a service charge of $1 for each withdrawal above 4 is added to the superclass field that holds the monthly service charges. (Don’t forget to check the account balance after the service charge is taken. If the balance falls below $25, the account becomes inactive.)


package bankaccount.and.savingaccount.pkgclass;/**** @author Luwei*/public abstract class BankAccount{private double balance;private double deposit;private double withdrawal;private double annualIR;private double monthlyCharges;public BankAccount(double myBalance, double myannualIR){balance = myBalance;annualIR = myannualIR;deposit = 0;withdrawal = 0;monthlyCharges = 0;}public double getBalance(){return balance;}public void setBalance(double myBalance){balance = myBalance;}public double getDeposit(){return deposit;}public void setDeposits(double myDeposit){balance = myDeposit;deposit += 1;}public double getWithdrawal(){return withdrawal;}public void setWithdrawal(double myAmount){double amount = myAmount;balance = balance - myAmount;withdrawal += 1;}public double getannualIR(){return annualIR;}public double calcInterest(){double monthlyRate;double monthlyInterest;monthlyRate = (annualIR/12);monthlyInterest = balance * monthlyInterest;balance = balance + monthlyRate;return balance;}public String getMonthlyProcess(){


calcInterest();withdrawal = 0;deposit = 0;monthlyCharges = 0;return "Monthly Process: " + balance;}void withdraw(double amount) {throw new UnsupportedOperationException("Not supported yet."); //Tochange body of generated methods, choose Tools | Templates.}void monthlyProcess(int i) {throw new UnsupportedOperationException("Not supported yet."); //Tochange body of generated methods, choose Tools | Templates.}}public class SavingAccount extends BankAccount{public int minAmount;private double minAmout;private int numberOfWithdrawals;public boolean withdraw(double amount){if(getBalance() >= amount + minAmount){super.withdraw(amount);return true;}else return false;}public void deposit(int amount){double temBalance;temBalance = balance - withdrawMoney;if(tempBalance <> 4)super.monthlyProcess(1);}}

May 18, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here