KnowledgeBoat Logo

Computer Applications

Write the Java expression for the following:

amountrate11(1+rate)n\cfrac{amount*rate}{1 - \cfrac{1}{(1 + rate)^n}}

Java Math Lib Methods

57 Likes

Answer


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

Answered By

41 Likes


Related Questions