May 31, 2014 Matthew Maennche Java, Learn To Code 20617, Java LANGUAGE: JAVA CHALLENGE: Write a conditional that multiplies the value of the variable pay by one-and-a-half if the value of the boolean variable workedOvertime is true. SOLUTION: if (workedOvertime == true) pay = pay * 1.5;