Computer Applications

Write the Java expressions for the following: (amount*rate) / (1 - (1 / (1 + rate)ⁿ))

Java Math Lib Methods

57 Likes

Answer


(amount*rate) / (1 - (1 / Math.pow(1+rate, n)))

Answered By

41 Likes


Related Questions