Question: C++ PROGRAMMING Write one complete c++ program to calculate the future value of an investment. Three values will be inputted into the program an investment
C++ PROGRAMMING

Write one complete c++ program to calculate the future value of an investment. Three values will be inputted into the program an investment value (like 10,000.00), an interest rate (like 0.065) and the number of years. Your program should calculate the future value of the investment given the following formula: future value = investment * (1 + interest rate)^year Print out the original investment value, the interest rate, the number of years, and the future value. You can assume that the interest rate is an annual value and is compounded annually. Use a loop to continue processing this program until the user says to stop. Use a if statement to check to see if the investment is and between $1000.00 and $20,000.00. If not, go to the end of the program ask the user if he wants to do another calculation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
