Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Design a BankAccount class that stores the account's annual interest rate and balance. the class constructor should accept the amount of the...

Design a BankAccount class that stores the account's annual interest rate and balance. the class constructor should accept the amount of the account's starting balance and Annual Interest Rate. The class should also have methods for subtracting the amount of withdrawal, add the amount of deposit, and adding the amount of monthly interest to the balance. The monthly interest rate is the annual interest rate divided by 12. To add the monthly interest to the balance, multiply the monthly interest rate by the balance, and add the result to the balance. ( this is compound interest ) 

Format output to 2 decimal places.

Test the class in a program that calculates the balance of a savings account at the end of a period of time. It should ask the user for the annual interest rate, the starting balance, and the number of months that have passed since the account was established, or prompt after each loop iteration to continue.

  1. Set up Accumulator variables:  totalInterest, totalDeposits, totalWithdrawals
  2. Prompt for starting balance and annual Interest Rate
  3. make a SavingsAccount object.
  4. Loop through each of the following steps for each set of Input Data:
  5. Prompt the user for the amount deposited into the account during the month. Use the class method to add this amount to account balance.
  6. Prompt the user for the amount withdrawn from the account during the month. Use the class method to subtract the amount from the balance.
  7. Use the class method to calculate the monthly interest.
  8. After the last monthly interest calculation, display the ending balance, the total of deposits, the total of withdrawals, and the total interest.

class BankAccount 

private:   double balance;     // Account balance  

double annualInterestRate;   

public: 

BankAccount(double startBalance, double annualinterestrate); 

void deposit(double amount); 

void withdraw(double amount); 

double getBalance(); 

void setBalance(double b); 

double calculateInterest();  

};

Run the Program for this Program Data:

 Starting BalanceAnnual Interest RateMonthsDeposits/Withdrawals 1000.0010%6Deposit 100.00 per month for first 3 months Withdraw 100.00 per month for last 3 months

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question