题解 100% AC
2025-08-02 10:48:59
发布于:江苏
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int chi,math,eng;
cin>>chi>>math>>eng;
if(chi<60&&math>=60&&eng>=60){
cout<<"1";
}else if(chi>=60&&math<60&&eng>=60){
cout<<"1";
}else if(chi>=60&&math>=60&&eng<60){
cout<<"1";
}else{
cout<<"0";
}
return 0;
}
这里空空如也
有帮助,赞一个