Question: Write a method in Java named compoundInterest(double money, double interestRate, int years) that takes an amount of money, a yearly interest rate, and a number
Write a method in Java named compoundInterest(double money, double interestRate, int years) that takes an amount of money, a yearly interest rate, and a number of years, and returns the total amount of money after that number of years. For example, compoundInterest(1000, 0.05, 3) returns 1157.625 (it's the total amount of money that you get if you deposit 1000 dollars with an interest rate of 5% for 3 years). Do not use Math.pow() to do this. Instead, add each term in a for loop.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
