Sunday, December 4, 2011

Design a class named BankAccount in java to hold data for bank account?

Design a class named BankAccount in java to hold data for bank a account


-Balance


- Number of deposits this month


- Number of withdrawals


- Annual Interest rate


- Monthly service charges





The class should have the following methods:





Constructor : The constructor should accept aruguments 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 balanc.


It should also increment the variable holding the number of deposits.








withdraw: A method that accepts an argument for the amount of withdrawal.The method should substract 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 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








montlyProcess: A method that substracts the montly service charges from the balance,calls the calcInterest method,and then sets the variables that hold


the number of withdrawls,number of deposits,and monthly services to zero.











Next,design a SavingAccount class that extends the BankAccount class.


The SavingsAccount class should have a status field to represent an acctive 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 may 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 deterines whether the account is inactive before a deposit is made.If the account is inactive and the deposit brings the balance abovee $25,the account becomes active agian.


A 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.)|||If you do not know Java, you could start with the Java Tutorial here


http://java.sun.com/docs/books/tutorial/





Scroll down to Getting Started and click on the link.


Check out Learning the Java Language as well.





I will give you some basics, but not do the whole thing myself.





You need to create a class BankAccount





public class BankAccount{


...


}





Inside this class you need to add methods.


The constructor


public BankAccount(double balance, double interestRate) {


...


}


The deposit method


public void deposit(double amount) {


...


}


The withdrawal method


public void withdrawal(double amount) {


...


}


The calcInterest method


private void calcInterest() {


...


}


The monthlyProcess method


protected void monthlyProcess() {


...


}





Now create a SavingsAccount class


public class SavingsAccount extends BankAccount {


...


}


The constructor


public SavingsAccount(double balance, double interestRate) {


super(balance, interestRate);


...


}


The deposit method


public void deposit(double amount) {


...


}


The withdrawal method


public void withdrawal(double amount) {


...


}


The monthlyProcess method


protected void monthlyProcess() {


...


}





You will need some variables in both classes.


BankAccount:


private double balance = 0.0;


private int deposits = 0;


private int withdrawals = 0;


private double interestRate = %26lt;whatever the interest rate is%26gt;;


private double serviceCharge = 1;





SavingsAccount:


private double minBalance = 25;


private boolean active = false;





The Main class


public static void main(String[] args) {


...


}





Variables:


private SavingsAccount sAccount;





In the main method create a new SavingAccount





That is a brief description, and gives you a start on what you will have to learn to be able to understand it.|||HOW many classes are we supposed to write?


I was going to do BankAccount for you (I had most of it written) until I saw that you were asking for even more.





Do your own homework. It only gets harder from here on out.


If you can't get classes, you're ******.

No comments:

Post a Comment