Skip to content

Instantly share code, notes, and snippets.

@gogeta95
Created March 3, 2018 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gogeta95/09bd91a214c6c6ca4b9d6ccfac9493be to your computer and use it in GitHub Desktop.
Save gogeta95/09bd91a214c6c6ca4b9d6ccfac9493be to your computer and use it in GitHub Desktop.
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