/* L4-6.cpp (Dangling else) To be hired by the ACME company an employer must first be at least 18 years old and also score at least 60 on a special test. This program is intended to pinpoint the reason an applicant is rejected. If applicant is satisfies both criteria the program does not print reason and doesn't produce any output. Find the mistake and correct it. */ #include using namespace std; int main() { int age, score; age = 25; score =70; if(age >= 18) if(score <60) cout << " Rejected because of low score." << endl; else cout << " Rejected because of under age." << endl; return 0; }