acgo题库
  • 首页
  • 题库
  • 学习
  • 天梯
  • 备赛

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
  • 竞赛
  • 讨论
  • 团队
  • 商城
登录
注册
题目详情提交记录(0)
  • 解

    #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; }

    userId_undefined
    屑小M
    0阅读
    0回复
    0点赞
  • 解题

    userId_undefined
    180****7629
    0阅读
    0回复
    0点赞
  • 专业题解

    #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; } //自己看吧

    userId_undefined
    137****1742
    0阅读
    0回复
    0点赞
  • 题解

    #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; }

    userId_undefined
    回来看看
    出道萌新倔强青铜
    0阅读
    0回复
    0点赞

共104条

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
20条/页
跳至页
暂无数据

提交答案之后,这里将显示提交结果~

首页