December 27, 2013 Matthew Maennche C++, Learn To Code 10563, C++ LANGUAGE: C++ CHALLENGE: Write a conditional that multiplies the values of the variable pay by one-and-a-half if the value of the boolean variable workedOvertime is true. SOLUTION: if(workedOvertime){ pay = pay * 1.5; }