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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

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

    #include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=5;i++){ int x; cin>>x; if(x<60){ cout<<"NO"; return 0; } } cout<<"YES"; return 0; }

    userId_undefined

    ~Lyney~

    2阅读
    0回复
    0点赞
  • 1

    #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a>>b>>c>>d>>e; if(a>=60&&b>=60&&c>=60&&d>=60&&e>=60){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }

    userId_undefined

    菜

    2阅读
    0回复
    0点赞
  • 解法如下

    #include<iostream> using namespace std; int main() { int a,b,c,d,e; cin>>a>>b>>c>>d>>e; if(a>=60&b>=60&c>=60&d>=60&e>=60) { cout<<"YES"; } else { cout<<"NO"; } } 此解法适合入门初学者。

    userId_undefined

    中山小学陈梓林

    I/O·IO入门者分支·分支解题者倔强青铜格式·格式排版员
    0阅读
    0回复
    0点赞
  • 简简单单 的 题解

    userId_undefined

    ༺ཌༀ™☯追光·少年☯™ༀད༻

    出道萌新时空双修者倔强青铜循环·循环打卡人数组·数组操作员字符串·魔法使
    0阅读
    0回复
    0点赞

共24条

  • 1
  • 2
20条/页
跳至页
首页