#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
if (a > 60) {
if (b > 60) {
cout << 1;
} else {
cout << 0;
}
}
else
{
cout << 0;
}
return 0;
}
共 2 条回复
恰好有一门不及格才输出1!
正确答案: #include <bits/stdc++.h> using namespace std; int main(){ long long int a,b; cin>>a>>b; if(a<60&&b>=60){ cout<<"1"; }else if(b<60&&a>=60){ cout<<"1"; }else{ cout<<"0"; } return 0; }