5 条题解
-
412209水宇辰 (12209水宇辰) LV 9 @ 2021-12-04 11:46:08
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if((a>=60&&b<60)||(a<60&&b>=60)) { cout<<"1"; } else { cout<<"0"; } return 0; }
-
12024-02-13 15:38:43@
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a<60 || b<60) { if(a<60 && b<60) cout<<0; else cout<<1; } else cout<<0; return 0; }
-
12021-12-04 11:45:10@
#include<cstdio> using namespace std; int a,b; int main() { scanf("%d%d",&a,&b); if((a>=60&&b<60)||(a<60&&b>=60)) { printf("1"); } else { printf("0"); } return 0; }
-
-22021-12-25 20:29:07@
***#include<iostream>
using namespace std;
int main()
{
int sb,cnm;
cin>>sb>>cnm;
if((sb>=60&&cnm<60)||(sb<60&&cnm>=60))cout<<"1";
else
cout<<"0";
return 0;
}
和vv额v而与给我如果v耶律古鲁忽发甲方
-
-32021-11-22 20:44:27@
#include<iostream>
using namespace std;
int main()
{
int m,n;std::cin>>n>>m;
(m<60&&n>59)||(n<60&&m>59)?std::cout<<'1':std::cout<<'0';
return 0;
}
- 1
信息
- ID
- 1716
- 难度
- 5
- 分类
- (无)
- 标签
- 递交数
- 320
- 已通过
- 115
- 通过率
- 36%
- 被复制
- 4
- 上传者