Created
March 24, 2017 06:02
-
-
Save badrij/427f70e400ebcb1e1819d8a23e0e8fa3 to your computer and use it in GitHub Desktop.
Travis config for AEP 2017
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
language: java | |
jdk: | |
- oraclejdk8 | |
notifications: | |
email: | |
- [email protected] | |
- [email protected] |
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
//Simple interest | |
private double interestFor(Double principal, Double percentageInterest, Double timeInYears) { | |
return (principal * percentageInterest * timeInYears) / 100; | |
} | |
//Compound interest | |
private double interestFor(Double principal, Double percentageInterest, Double timeInYears) { | |
return principal * Math.pow(1+(percentageInterest/100.0), timeInYears); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mjayaram These are the gists for tomorrow!