Created
February 26, 2018 03:15
-
-
Save lucasdu4rte/1244585ea5d2f8a19660b231acc25c66 to your computer and use it in GitHub Desktop.
Juros Simples
This file contains 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
var juros_simples = function(capital, taxa, n_periodos) { | |
return capital * taxa * n_periodos; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment