/* L4-1.cpp (Syntax Errors, if else statment.) An employee makes $400 per week base salary plus a $50 bonus if he works over 40 hours. What is wrong with this program to compute an employee's salary? It will produce several syntax errors? Fix the program and then run it twice-- first with input of 40 hours and then with an input of 44 hours. */ #include using namespace std; int main() { int hrs; cout << "Enter hours worked " << endl; cin >> hrs; If hrs > 40 cout << "You worked overtime " << endl; cout << "Your salary is $450" << endl; else cout << "No overtime" << endl; cout << "Your salary is 400" << endl; return 0; }