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

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
登录
注册
题目详情题解(0)讨论(0)提交记录(0)
  • Ok呀,这么简单,直接给我坐下

    #include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a+b>c) { if(b+c>a) { if(a+c>b) { cout<<"yes"; } }

    userId_undefined

    eating

    0阅读
    0回复
    0点赞
  • ...

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

    userId_undefined

    DARK SPECTRE

    0阅读
    0回复
    0点赞
  • tijie

    userId_undefined

    正在减肥的吃货

    0阅读
    0回复
    0点赞
  • 题解

    #include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a+b>c&&a+c>b&&c+b>a){ cout<<"yes"; }else{ cout<<"no"; } return 0; }

    userId_undefined

    风中雪zLyXj

    0阅读
    0回复
    0点赞
  • 题解

    #include<iostream> using namespace std; int main(){ int a; cin>>a; if(a+b>c&&a+c>b&&c+b>a) cout<<"yes"; else cout<<"no"; }

    userId_undefined

    一只有梦想的咸鱼

    0阅读
    0回复
    0点赞

共105条

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