#include #include int main() { int hours; float ot, rp, rate, pay; cout <<"How many hours were worked ?"; cin >> hours; cout <<"What is the regular hourly pay ? "; cin >> rate; ot = 0.0; if (hours > 40) { ot = 1.5 * rate * (hours - 40); } if (hours = 40) { rp= 40 * rate; } else { rp = hours * rate; } pay = ot + rp; cout <