Question: Please read entire question For C++ Codes used below bankAccount .cpp #include bankAccount.h //bankAccount::bankAccount() //{ //} bankAccount::bankAccount(string acctNum, double startBal) { accountNumber = acctNum; balance

Please read entire question

For C++

Please read entire question For C++ Codes used below bankAccount.cpp #include "bankAccount.h"

//bankAccount::bankAccount() //{ //} bankAccount::bankAccount(string acctNum, double startBal) { accountNumber = acctNum; balance

= startBal; } //bankAccount::~bankAccount() //{ //} double bankAccount::deposit(double depositAmt) { balance +=Codes used below

bankAccount.cpp

#include "bankAccount.h"

//bankAccount::bankAccount() //{ //}

bankAccount::bankAccount(string acctNum, double startBal) { accountNumber = acctNum; balance = startBal; }

//bankAccount::~bankAccount() //{ //}

double bankAccount::deposit(double depositAmt) { balance += depositAmt; return balance; }

string bankAccount::getAccountNumber() { return accountNumber; }

double bankAccount::getBalance() { return balance; }

void bankAccount::print() { cout

void bankAccount::setAccountNumber(string acctNum) { accountNumber = acctNum; }

double bankAccount::withdraw(double withdrawalAmt) { balance -= withdrawalAmt; return balance; }

ba nkAccount.h

#ifndef BANKACCOUNT_H #define BANKACCOUNT_H #include #include using namespace std;

class bankAccount { protected: string accountNumber; double balance;

public: //bankAccount(); bankAccount(string acctNum, double startBal); //~bankAccount(); double deposit(double depositAmt); string getAccountNumber(); double getBalance(); void print(); void setAccountNumber(string acctNum); double withdraw(double withdrawalAmt); };

#endif // !BANKACCOUNT_H

checkingAccount.cpp

#include "checkingAccount.h"

//checkingAccount::checkingAccount() //{ //}

checkingAccount::checkingAccount(string acctNum, double startBal, double intRate, double minBalance, double srvCharge) : bankAccount(acctNum, startBal) { //bankAccount::accountNumber = acctNum; //bankAccount::balance = startBal; interestRate = intRate; minimumBalance = minBalance; serviceCharge = srvCharge; }

//checkingAccount::~checkingAccount() //{ //}

double checkingAccount::getInterestRate() { return interestRate; }

double checkingAccount::getMinimumBalance() { return minimumBalance; }

double checkingAccount::getServiceCharge() { return serviceCharge; }

// Multiplies balance times interest rate (as percentage) divided by 100, adds interest to balance, // and returns interest gained double checkingAccount::postInterest() { if (balance

void checkingAccount::print() { cout

void checkingAccount::setInterestRate(double intRate) { interestRate = intRate; }

void checkingAccount::setMinimumBalance(double minBalance) { minimumBalance = minBalance; }

void checkingAccount::setServiceCharge(double srvCharge) { serviceCharge = srvCharge; }

// returns true if balance is below minimum balance bool checkingAccount::verifyMinimumBalance() { bool balanceBelow = false;

if (bankAccount::balance

return balanceBelow; }

double checkingAccount::withdraw(double withdrawalAmt) { //check if enough balance if ((bankAccount::balance - withdrawalAmt)

void checkingAccount::writeCheck(string recipient, double checkAmount) { if ((balance - checkAmount)

checkingAccount.h

#include #include using namespace std;

class checkingAccount : public bankAccount { private: double interestRate; double minimumBalance; double serviceCharge; public: //checkingAccount(); checkingAccount(string acctNum, double startBal, double intRate, double minBalance, double srvCharge); //~checkingAccount(); double getInterestRate(); double getMinimumBalance(); double getServiceCharge(); double postInterest(); void print(); void setInterestRate(double intRate); void setMinimumBalance(double minBalance); void setServiceCharge(double srvCharge); bool verifyMinimumBalance(); double withdraw(double withdrawalAmt); void writeCheck(string recipient, double checkAmount); };

#endif

savingsAccount.cpp

#include "savingsAccount.h"

//savingsAccount::savingsAccount() //{ //}

savingsAccount::savingsAccount(string acctNum, double startBal, double intRate) : bankAccount(acctNum, startBal) { accountNumber = acctNum; //balance = startBal; //interestRate = intRate; }

//savingsAccount::~savingsAccount() //{ //}

double savingsAccount::getInterestRate() { return interestRate; }

double savingsAccount::postInterest() { double interest = 0; interest = bankAccount::balance * (interestRate / 100); bankAccount::balance += interest;

return interest; }

void savingsAccount::print() { cout

void savingsAccount::setInterestRate(double intRate) { interestRate = intRate; }

double savingsAccount::withdraw(double withdrawalAmt) { //verify there's enough money in account if ((bankAccount::balance - withdrawalAmt)

savingsAccount.h

#ifndef SAVINGSACCOUNT_H #define SAVINGSACCOUNT_H #include #include #include "bankAccount.h" using namespace std;

class savingsAccount : public bankAccount { private: double interestRate; public: //savingsAccount(); savingsAccount(string acctNum, double startBal, double intRate); //~savingsAccount(); double getInterestRate(); double postInterest(); void print(); void setInterestRate(double intRate); double withdraw(double withdrawalAmt); };

#endif

bankAccountTest.cpp

#include

#include

#include "savingsAccount.h"

#include "checkingAccount.h"

using namespace std;

int main()

{

bankAccount *accountsList[6];

accountsList[0] = new checkingAccount("Bill", 10200, 25000,100,0.012,10.00);

accountsList[1] = new checkingAccount("Bob", 10210, 10000,100,0.0099,15.00);

accountsList[2] = new savingsAccount("Susan", 90001, 20000,0.031);

accountsList[3] = new savingsAccount("Steve", 90002, 50000,0.041);

accountsList[4] = new checkingAccount("Sally", 10220, 4999,100,0.0079,20.00);

accountsList[5] = new savingsAccount("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

}

return 0;

}

bankAccount polymorphism Create from scratch or modify week 2 program as follows bankAccount The bankAccount class will be abstract in this assignment and will use virtual and ure virtual functions Data accountNumber ame balance Methods getAccountNumber getBalance getName setName deposit withdraw (virtual) print (virtual) createMonthlyStatement (pure vi 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 Methods getMinimumBalance setMinimumBalance getInterestRate setInterestRate getServiceCharge setServiceCharge postInterest writeCheck withdraw print 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 postlnterest takes the interest amount based off of the total balance and adds it to the balance (balance + balanceinterestRate) 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 postlnterest()) and deducts the monthly fee from the balance Print uses the base class print() and then also prints the interest rate ive class savingsAccount from alass bankAccount The savingsAccount class should define and implement the following data and methods savingsAccount Data interestRate Methods getInterestRate setInterestRate withdraw postInterest print 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: define an array to hold 6 bankAccount classes store 3 new checking accounts and 3 new savings accounts in the array Print a January Header" for all 6 accounts, create the monthly statement then print the account info print a February header for all 6 accounts, create the monthly statement then print the account info withdraw 500 for each account print a match header 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 ciostream> #include qomanip include "savings-Account.h" using namespace std int main0 accountsList[0] = new checkingAccount("Bill". 10200, 25000, 100.0012, 10.00); accountsList[]-new checkingAccount Bob", 10210, 10000,100,0.0099,15.00); accountsList 2]-new savingsAccount"Susan", 90001, 20000,0.031); accountsList[3] = new savingsAccount("Steve", 90002, 50000,0041); accountsList[4]-new checkingAccount Sally 10220, 4999,100,0.0079,20.00) accountsList[5] = new savingsAccountCFrad", 90003, 2000,001 1); cout createMonthlyStatement0; accountsListi- printO cout endl The following is an example of a main program you can choose to use which meets the above requirements include ostream include qomanip> include "savings-Account.h include "checking-Account.h" using namespace std; int mainO accountsList[0] = new checkingAccount("Bill", 10200, 25000. 100.0.012,10.00); accountsList[1]= new checkingAccount("Bob", 10210, 10000.100,00099.15.00); accountsList[2] = new savingsAccount," Susan", 90001, 200000031); accountsList[3]-new savingsAccount" Steve", 90002, 50000,0.041); accountsList[4] = new checking Account," Sally", 10220, 4999, 100,00079.20.00); accountsList[5] new savingsAccount("Frad", 90003, 2000.0.011); createMonthlyStatement0; accountsListprint0 cout endl; "e endl coutcreateMonthlyStatement0; cout endl; for (int 1-0; 1 #6; i++) accountsListil>withdraw(500); cout"nMarch:n for (int i=0;i#6; i++) endl accountsListfi] >createMonthlyStatement0; cout endl retum 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!