Created
May 5, 2017 18:24
-
-
Save tmountain/e944ff40f3f1ad3fb3d1f0cde3a6f30f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def interest(principal, rate, times, years) | |
principal * (1 + rate.to_f/times.to_f) ** (times.to_f * years.to_f) | |
end | |
1.upto(50) do |y| | |
puts sprintf("%.02f", interest(1000, 0.05, 1, y)) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment