#include #include using namespace std; const int HOURS_PER_WEEK{40}; int main() { float hoursWoked{0}, hourlyRate{0}, basePay{0}, overtimePay{0}, totalPay{0}; bool getsOvertime{false}; char answer; cout << "Do you get paid for overtime (Y/N) =>"; cin >> answer; cout << endl; if ('Y' == answer or 'y' == answer) { getsOvertime = true; } if (getsOvertime and hoursWorked > HOURS_PER_WEEK) { } return 0; }