Question: Write a method that computes future investment value at a given interest rate for a specified number of years. The future investment is determined using
Write a method that computes future investment value at a given interest rate for a specified number of years. The future investment is determined using the following formula:
numberOfYears
futureInvestmentValue investmentAmount x monthlyInterestRate
Use the following method header:
public static double futureInvestmentValue
double investmentAmount, double monthlyInterestRate, int years
For example, futureInvestmentValue returns
Write a test program that prompts the user to enter the investment amount eg and the interest rate eg and prints a table that displays future value for the years from to as shown below:
The amount invested:
Annual interest rate:
Years Future Value
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
