阅读以下C++代码:若 score 的值为60,则程序输出及格。(备注:score表示成绩)
if (score >= 60) cout << "及格"; else cout << "不及格";
正确
错误