Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Coding (4-6 Please make code Copy and Paste-able , also this is an intro class so please nothing too advanced ) 6. Write a
C++ Coding (4-6 Please make code Copy and Paste-able, also this is an intro class so please nothing too advanced)
6. Write a function declaration for a function that computes interest on a credit card account balance. The function takes arguments for the initial balance, the monthly interest rate, and the numberof months for which interest must be paid. The value returned is the interest due. Do not forget to compound the interest-that is, to charge interest on the interest due. The interest due is added into the balance due, and the interest for the next month is com- puted using this larger balance. Use a while loop that is similar to (but need not be identical to) the one shown in Display 2.14. Embed the function in a program that reads the values for the interest rate, initial account balance, and number of months, then outputs the interest due. Embed your function definition in a program that lets the user compute interest due on a credit account balance. The program should allow the user to repeat the calculation until the user says he or she wants to end the program Below is an example showing the accumulation of interest with an initial balance of $100 and a 12% annual rate: num. Months one month int b. balance int rate end balance accrued int $100.00 12.00% $101.00 12.00% $2.01 $101.00 $1.01 $102.01 12.00% $103.03 $102.01 $3.03 $103.03 12.00% $1.03 $104.06 $4.06 12.00% $104.06 $1.04 $105.10 $5.10 12.00% $106.15 $6.15 $105.10 $1.05Step 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