Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I am stumped with this for c++ bankAccount extended Create from scratch or modify week 1 bankAccount class. bankAccount Data accountNumber balance The class should
I am stumped with this for c++
bankAccount extended Create from scratch or modify week 1 bankAccount class. bankAccount Data accountNumber balance The class should define and implement the following data and methods: Methods setAccountNumber getAccountNumber getBalance withdravw deposit Constructor: sets account number sets account balance Derive class checkingAccount from base class bankAccount. The checkingAccount class should define and implement the following data and methods checkingAccount Data interestRate minimumBalance erviceCharge Methods getMinimumBalance setMinimumBalance getInterestRate setInterestRate getServiceCharge setServiceCharge postInterest writeCheck withdravw Constructor: sets account number sets account balance sets minimum balance set interest rate sets service charge amount NOTES postlnterest 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 adjusted to reflect the withdraw and the service charge applied Derive class savinasAccount from base class bankAccount. The savingsAccount class should define and implement the following data and methods savingsAccount Data interestRate Methods getInterestRate setInterestRate withdraw postlnterest nt Constructor: Derive class savingsAccount from base class bankAccount savingsAccount The savingsAccount class should define and implement the following data and methods Methods getInterestRate setInterestRate withdraw postInterest ata interestRate Constructor 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 a main program to test the class as follows. Use hard coded data (do not prompt the user for data, just make up values). create 2 checking accounts and 2 savings accounts deposit money in each post interest in each print details of each write checks in the checking accounts withdraw from the savings accounts print details of each You may use the following main program to test your classes if you wish: #includeStep 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