fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static double payTJ(double a, int b) {
  11. if (b > 8) {
  12. return (a * 8) + ((b - 8)*(a * 1.5));
  13. }
  14. else {
  15. return (a * b);
  16. }
  17. }
  18.  
  19. public static double payGK(double a, int b) {
  20. int regularHours = Math.min(8, b);
  21. int extraHours = Math.max(b-8, 0);
  22. return (a * regularHours) + (extraHours * a * 1.5);
  23. }
  24.  
  25. public static double payRL(double hourlyWage, int hours) {
  26. int regular = hours > 8 ? 8 : hours;
  27. int overtime = hours - regular;
  28. return hourlyWage * (regular + (1.5 * overtime));
  29. }
  30.  
  31. public static void main(String[] args) {
  32. final double wage = 10.0;
  33. for (int i = 0; i < 20; i++) {
  34. System.out.printf("For hours %2d and wage %.2f the pay is: TJ %6.2f RL %6.2f GK %6.2f\n",
  35. i, wage, payTJ(wage, i), payRL(wage, i), payGK(wage, i));
  36. }
  37. }
  38. }
Success #stdin #stdout 0.15s 320704KB
stdin
Standard input is empty
stdout
For hours  0 and wage 10.00 the pay is: TJ   0.00     RL   0.00     GK   0.00
For hours  1 and wage 10.00 the pay is: TJ  10.00     RL  10.00     GK  10.00
For hours  2 and wage 10.00 the pay is: TJ  20.00     RL  20.00     GK  20.00
For hours  3 and wage 10.00 the pay is: TJ  30.00     RL  30.00     GK  30.00
For hours  4 and wage 10.00 the pay is: TJ  40.00     RL  40.00     GK  40.00
For hours  5 and wage 10.00 the pay is: TJ  50.00     RL  50.00     GK  50.00
For hours  6 and wage 10.00 the pay is: TJ  60.00     RL  60.00     GK  60.00
For hours  7 and wage 10.00 the pay is: TJ  70.00     RL  70.00     GK  70.00
For hours  8 and wage 10.00 the pay is: TJ  80.00     RL  80.00     GK  80.00
For hours  9 and wage 10.00 the pay is: TJ  95.00     RL  95.00     GK  95.00
For hours 10 and wage 10.00 the pay is: TJ 110.00     RL 110.00     GK 110.00
For hours 11 and wage 10.00 the pay is: TJ 125.00     RL 125.00     GK 125.00
For hours 12 and wage 10.00 the pay is: TJ 140.00     RL 140.00     GK 140.00
For hours 13 and wage 10.00 the pay is: TJ 155.00     RL 155.00     GK 155.00
For hours 14 and wage 10.00 the pay is: TJ 170.00     RL 170.00     GK 170.00
For hours 15 and wage 10.00 the pay is: TJ 185.00     RL 185.00     GK 185.00
For hours 16 and wage 10.00 the pay is: TJ 200.00     RL 200.00     GK 200.00
For hours 17 and wage 10.00 the pay is: TJ 215.00     RL 215.00     GK 215.00
For hours 18 and wage 10.00 the pay is: TJ 230.00     RL 230.00     GK 230.00
For hours 19 and wage 10.00 the pay is: TJ 245.00     RL 245.00     GK 245.00