After the following code is executed what will be displayed on the screen? bool correntEmployee = true; double empSalary = 45000; if (correntEmployee) { if (empSalary < 45000) cout << "The employee needs a pay raise./n"; else cout << "The employee pay rate is normal./n"; } else cout << "This person is not an employee./n";
+4
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “After the following code is executed what will be displayed on the screen? bool correntEmployee = true; double empSalary = 45000; if ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » After the following code is executed what will be displayed on the screen? bool correntEmployee = true; double empSalary = 45000; if (correntEmployee) { if (empSalary < 45000) cout << "The employee needs a pay raise.