4588: 有一门课不及格的学生
[Creator : ]
Description

#include <iostream>
using namespace std;
int main() {
int a, b, c, t;
// t 表示这学生一共有几门课不合格
cin >> a >> b >> c;
t = 0; // 记得将 t 赋值为 0
if ( ) ______; // 如果语文不合格,则t赋值为t+1
if ( ) ______; // 如果数学不合格,则t赋值为t+1
if ( ) ______; // 如果英语不合格,则t赋值为t+1
if ( ) // 如果有一门课不及格(也就是t等于1),输出 1
____
else // 否则
cout << 0; // 输出 0
return 0;
}
Sample Input Copy
59 59 61
Sample Output Copy
0