create four classes accountjava checkingjava


Create four classes: Account.java, Checking.java, Savings.java, and AccountArray.java.

1. For the Account class, create:

  • two protected variables for the account number and the account balance.
  • two get methods - one for the account number and one for the account balance
  • two set methods - one for the account number and one for the balance.
  • a constructor that requires an account number and sets the balance to 0.
  • a method to override the toString() method which returns a String containing: Account # = < account number> Account Balance = where is the object's account number and is the object's account balance.
  • an abstract computeInterest() method that takes one integer argument and returns a double.
  • Do not allow either the account number or the balance to be set to a negative number.

2. The Checking class will be a subclass of Account. For the Checking class, create:

  • a method to override the toString() method which returns a String containing: "Checking" , the account number, and the account balance. Do not print the interest earned as part of toString().
  • a constructor that takes an account number as an argument and calls the superclass constructor passing this account number.
  • a method to implement the abstract computeInterest() method of the superclass. This method takes one argument for the interest period and returns the interest earned. The interest earned is 2 % of the balance over $700 times the interest period. The interest period is passed as an argument to the computeInterest() method. For example, the interest on $3000 at 2% for three years is (3000 - 700) times .02 times 3 or 138.

3. The Savings class will be a subclass of Account. For the Savings class, create:

  • an additional private variable to hold the interest rate.
  • a get and set method for the interest rate. Do not allow the interest rate to be set to a negative number.
  • a method named toString() that overrides the toString() method of the Object class. This method should return "Savings", the account number, the account balance and the interest rate. Do not print the interest earned as part of toString().
  • a constructor with two arguments - the account number and the interest rate. This constructor calls the superclass constructor passing the account number.
  • a method to implement the abstract computeInterest() method of the superclass. This method takes one argument for the interest period and returns the interest earned. The interest is calculated as (1 + interest rate)period times the balance minus the balance. The interest period is passed as an argument to the computeInterest() method. For example, the interest on $6000 at 2% for three years is (1.02)3 * 6000 - 6000 or 367.

4. For the AccountArray class, create:

  • a main() method.
  • an array to store 10 objects of either the Savings or Checking class. Use 2% (.02) for the savings account rate. Use account numbers 100 through 109. Use initial balances of 1000 through 10000.
  • a for loop that will instantiate 5 objects of the Savings class and 5 objects of the Checking class. Store these objects in a single array created above.
  • a for loop that prints the data in all 10 objects of the array using the overridden toString() method and also prints the interest amount computed for each object. Use 3 for the period.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: create four classes accountjava checkingjava
Reference No:- TGS0443440

Now Priced at $30 (50% Discount)

Recommended (98%)

Rated (4.3/5)