📝 下面C++代码执行时如输入 99.99 ,将输出 及格 两个汉字。( ) ``` int score; cout << "请输入学生成绩:"; cin >> score; if (score >= 60) printf("及格"); …
📂 C++
· ⚡ 难度 1
· ❓ 判断题
· 📖 2025年9月GESP2级
下面C++代码执行时如输入 99.99 ,将输出 及格 两个汉字。( )
```
int score;
cout << "请输入学生成绩:";
cin >> score;
if (score >= 60)
printf("及格");
else
printf("不及格");
```