Created
April 21, 2019 04:54
-
-
Save AnasAlmasri/58f9d9dfab3ba87a38868efa39850557 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
| private int performCalculations() { | |
| switch (OPERATOR) { | |
| case '+': | |
| return FIRST_NUMBER + SECOND_NUMBER; | |
| case '-': | |
| return FIRST_NUMBER - SECOND_NUMBER; | |
| case '*': | |
| return FIRST_NUMBER * SECOND_NUMBER; | |
| case '/': | |
| return FIRST_NUMBER / SECOND_NUMBER; | |
| case '^': | |
| return FIRST_NUMBER ^ SECOND_NUMBER; | |
| } | |
| return -999; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment