Created
September 17, 2010 16:49
This file contains 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
package payroll; | |
public class PayCalculator { | |
public static double calculate(double hours, | |
double rate, | |
boolean isHourlyWorker) { | |
if (hours < 0 || hours > 80) { | |
throw new RuntimeException("Hours out of range: " + hours); | |
} | |
if (isHourlyWorker) { | |
double overtime = Math.max(0, hours - 40); | |
return hours * rate + overtime * rate * 0.5; | |
} else { | |
return hours * rate; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment