Student Name: __________________
Class and Section __________________
Total Points (15 pts) __________________
Due: November 9, 2016 before the class
Project: Computing Future Investment Value
CSCI 1301 Introduction to Programming Principles
Armstrong Atlantic State University
Problem Description:
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:
futureInvestmentValue =
investmentAmount x (1 + monthlyInterestRate)numberOfYears*12
Use the following method header:
public static double futureInvestmentValue(
double investmentAmount, double monthlyInterestRate, int years)
Analysis:
(Describe the problem including input and output in your own words.)