竞赛
考级
180****7629
#include <iostream> using namespace std; int main(){ int c,m; cin >> c >> m; if(c < 60 and m >= 60 or c >= 60 and m < 60){ cout << 1; }else{ cout << 0; } return 0; }
JMZ詹总
#include<bits/stdc++.h> using namespace std; int sum; int main() { int a,b; cin>>a>>b; if(a<60&&b>=60||b<60&&a>=60) { cout<<"1"; } else { cout<<0; } return 0; } //自己看吧
137****1742
#include<bits/stdc++.h> using namespace std; int main(){ int c,m; cin>>c>>m; if(c<60 and m>=60 or c>=60 and m<60) cout<<1; else cout<<0; return 0; }
回来看看
共84条