acgo题库
  • 首页
  • 题库
  • 题单
  • 竞赛
  • 讨论
  • 排行
  • 团队
  • 备赛专区

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    userId_undefined

    180****7629

    0阅读
    0回复
    0点赞
  • JMZ橙橙

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

    userId_undefined

    JMZ詹总

    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点赞

共84条

  • 1
  • 2
  • 3
  • 4
  • 5
20条/页
跳至页
首页