竞赛
考级
为什么我的代码不对 #include <iostream> using namespace std; int main(){ int a,b; cin >> a >> b; if(a<60||b<60){ cout << "1"; }else cout << "0"; return 0; }
Mr包
垃圾
苍蓝咏叹
#include <iostream> using namespace std; int main(){ int yv,shu; cin>>yv>>shu; if(yv<60) if(yv<60&&shu<60)cout<<0; else cout<<1; if(yv>60&&shu>60)cout<<0; return 0; }
135****5269
#include<iostream> using namespace std; int main(){ int a,b; cin >> a>>b; if ((a<60 and b>=60) or (a>=60 and b<60)) cout<<"1"; else cout<<"0"<<endl; }
屑小M
为啥这种题还会有人不会
6.