Question
bankAccount -The bankAccount class will be abstract in this assignment and will use virtual and pure virtual functions. Data accountNumber name balance Methods getAccountNumber getBalance
bankAccount -The bankAccount class will be abstract in this assignment and will use virtual and pure virtual functions. | |
Data accountNumber name balance | Methods getAccountNumber getBalance getName setName deposit withdraw (virtual) print (virtual) createMonthlyStatement (pure virtual) |
Constructor:
sets account number set account holder name sets account balance | |
Note: Print() displays the account number and balance |
Derive class checkingAccount from base class bankAccount. The checkingAccount class should define and implement the following data and methods:
checkingAccount | |
Data interestRate minimumBalance serviceCharge fee | Methods getMinimumBalance setMinimumBalance getInterestRate setInterestRate getServiceCharge setServiceCharge postInterest writeCheck withdraw createMonthlyStatement |
Constructor:
sets account holder name sets account number sets account balance sets minimum balance set interest rate sets service charge amount sets amount of monthly fee | |
NOTES: postInterest takes the interest amount based off of the total balance and adds it to the balance (balance + balance * interestRate) writeCheck calls withdraw withdraw checks to make sure there is enough money in the account first and reports a warning if not. If there is enough money to make the withdraw, it then checks to see if the balance will go below the minimum amount after the withdraw. If so, it checks to see if the balance will go below zero after the withdraw and the service charge is applied. Should this occur an error is reported. If not, the balance is adjust to reflect the withdraw and the service charge applied. createMonthlyStatement this posts the interest (calls postInterest()) and deducts the monthly fee from the balance. Print uses the base class print() and then also prints the interest rate. |
Derive class savingsAccount from base class bankAccount. The savingsAccount class should define and implement the following data and methods:
savingsAccount | |
Data interestRate | Methods getInterestRate setInterestRate withdraw postInterest createMonthlyStatement |
Constructor:
sets account holder name sets account number sets account balance set interest rate | |
NOTES: Withdraw checks to make sure there is enough money before altering the balance. If not, a warning message is printed and the balance remains unchanged. Create monthly statement this posts the interest to the account Print uses the base class print() and then also prints the interest rarte. |
Create a main program to test the class as follows. Use hard coded data (do not prompt the user for data, just make up values). Perform these steps in order:
1. define an array to hold 6 bankAccount classes.
2. store 3 new checking accounts and 3 new savings accounts in the array
3. Print a January Header
4. for all 6 accounts, create the monthly statement then print the account info
5. print a February header
6. for all 6 accounts, create the monthly statement then print the account info
7. withdraw 500 for each account
8. print a match header
9. for all 6 accounts, create the monthly statement then print the account info
The following is an example of a main program you can choose to use which meets the above requirements:
#include
#include
#include\"savingsAccount.h\"
#include\"checkingAccount.h\"
usingnamespacestd;
int main()
{
bankAccount *accountsList[6];
accountsList[0] =newcheckingAccount(\"Bill\",10200,25000,100,0.012,10.00);
accountsList[1] =newcheckingAccount(\"Bob\",10210,10000,100,0.0099,15.00);
accountsList[2] =newsavingsAccount(\"Susan\",90001,20000,0.031);
accountsList[3] =newsavingsAccount(\"Steve\",90002,50000,0.041);
accountsList[4] =newcheckingAccount(\"Sally\",10220,4999,100,0.0079,20.00);
accountsList[5] =newsavingsAccount(\"Frad\",90003,2000,0.011);
cout
for (int i =0; i
{
accountsList[i]->createMonthlyStatement();
accountsList[i]->print();
cout
}
cout
for (int i =0; i
{
accountsList[i]->createMonthlyStatement();
accountsList[i]->print();
cout
}
for (int i =0; i
{
accountsList[i]->withdraw(500);
}
cout
for (int i =0; i
{
accountsList[i]->createMonthlyStatement();
accountsList[i]->print();
cout
}
return0;
}
You will create seven files for this assignment:
bankAccount.h (base class definition)
bankAccount.cpp (base class implementation)
checkingAccount.h (checkingAccount definition)
checkingAccount.cpp (checkingAccount implementation)
savingsAccount.h (savingsAccount definition)
savingsAccount.cpp (savingsAccount implementation)
bankAccountTest.cpp (test file for your bankAccount class)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started