Created
March 3, 2018 18:55
-
-
Save gogeta95/09bd91a214c6c6ca4b9d6ccfac9493be 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 static int WORK_HOURS_PER_DAY = 8; | |
private static int WORK_DAYS_PER_WEEK = 5; | |
public static int calculatePayforWeek(int payPerHour){ | |
int s = payPerHour*WORK_HOURS_PER_DAY*WORK_DAYS_PER_WEEK; | |
return s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment