/* L4-4.cpp (Two Exams) Under which situations will this program print a correct message? Find the error and correct it. */ #include using namespace std; int main() { int score1, score2; cout <<"Enter the two exam scores" << endl; cin >> score1 >> score2; if (score1 >= 60 && score2 >= 60) cout <<"Passed both" << endl; if (score1 >= 60 || score2 >= 60) cout <<"Passed just one exam" << endl; else cout <<"Failed both" << endl; return 0; }