Last active
April 8, 2020 13:46
-
-
Save jeanluc243/83164a28475bbfed51ea078617caac61 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
double add(double firstNum, double secondNum) { | |
return firstNum + secondNum; | |
} | |
double subtract(double firstNum, double secondNum) { | |
return firstNum - secondNum; | |
} | |
double multiply(double firstNum, double secondNum) { | |
return firstNum * secondNum; | |
} | |
double divide(double firstNum, double secondNum) { | |
return firstNum / secondNum; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment