CSCI231 Project Eleven Account Classes solved

$35.00

Category: You will receive a download link of the .ZIP file upon Payment

Description

5/5 - (1 vote)

Purpose: The purpose for this project is to reinforce the knowledge learned in
Chapter 11.
Objectives:
1. Write base class and derived classes
2. Apply theory of polymorphism
Problem description:
Write bank Account family classes. The Account class is base class. CheckingAccount
and SavingsAccount are derived classes. The class diagrams are following:
Account
-id: int
-balance: double
+Account()
+Account(id: int, balance: double)
+setBalance(balance:double):void
+getBalance():double
+setId(id:int):void
+getId():int
+deposit(amount:doube): void
+withdraw(amount:double):void
+toString():String
CheckingAccount
+withdraw(amount:double):void
+toString():string
SavingAccount
-interestRate: double
+setInterestRate(rate:double):void
+getInterestRate():double
+withdraw(amount:double):void
+addInterest():void
+toString():string
Requirement:
The class design could be better. However, we are limited with the knowledge we
have now. So the above class diagram is reasonable. All methods are explained by
their names. Please pay attention to withdraw methods.
The Account class withdraw method is implemented by doing nothing. The
CheckingAccount withdraw method must fulfill the policy that the withdraw amount
must greater than 0 and less than or equal to current account balance. The
SavingsAccount withdraw method must fulfill the policy that the minimum balance
of the account must be 500 all the time. Also the withdraw amount must greater
than 0. If the condition cannot be fulfilled, either withdraw method will do nothing
but return.
When addInterest method in SavingsAccount class, the account balance updated to
current_balance * (1 + interestRate) where interestRate is in decimal form. For
instane, 6% is 0.06.
The students must write a main function to test these accounts. In main function,
polymorphism must be used to handle a collection of accounts.
Sample pseudo code for main function
1. Declare an array of Account, named accounts, of size 4
2. Initialize every element in accounts array. Make accounts[0] and accounts[1]
be CheckingAccount and accounts[2] and accounts[3] be SavingsAccount
3. Make deposit and withdraw for each account and print out the account
information to see the result
4. If the account is SavingsAccount, call addInterest function to update the
account balance. Then print out the account information
Submission:
Submit the YourProj11.java file via blackboard link. The due date will be announce
on blackboard