C++ please! Suppose you have a certain amount of money in a savings account that earns compound monthly interest, and you want to calculate the amount that you will have after a specific number of months. The formula, which is known as the future value formula, is: F=P×(1+i)^t The terms in the formula are as follows: F is the future value of the account after the specified time period. P is the present value of the account.o i is the monthly interest rate. t is the number of months.Write a program that prompts the user to enter the account’s present value, monthly interest rate, and the number of months that the money will be left in the account. The program should pass these values to a function named futureValue that returns the future value of the account, after the specified number of months. The program should display the account’s future value.
C++ please!
Suppose you have a certain amount of money in a savings account that earns compound monthly interest, and you want to calculate the amount that you will have after a specific number of months. The formula, which is known as the future value formula, is:
F=P×(1+i)^t
The terms in the formula are as follows: F is the future value of the account after the specified time period. P is the present value of the account.o i is the monthly interest rate. t is the number of months.Write a program that prompts the user to enter the account’s present value, monthly interest rate, and the number of months that the money will be left in the account. The program should pass these values to a function named futureValue that returns the future value of the account, after the specified number of months. The program should display the account’s future value.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images