竞赛
考级
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; }
一头二臂
#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a+b>c&&a+c>b&&b+c>a){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
136****4401
#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a+b>c&&a+c>b&&b+c>a){ printf("yes"); }else{ printf("no"); } return 0; }
136****9647
#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; }
AC
#include <iostream> 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"<< endl ; }else{ cout << "no"<< endl; } return 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; }
太宗驾到
闯思得
6.
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if (a+b>c&&a-b<c&&a+c>b&&a-c<b&&b+c>a&&b-c<a){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
不会写代码
#include<iostream> using namespace std; int main(){ int a,s,d; cin>>a>>s>>d; if(a+s>d&&a+d>s&&s+d>a){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
王
180****1886
#include <iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a+b>c && b+c>a && c+a>b){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
乔尔·加里森
#include<bits/stdc++.h> 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; }
john
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a+b>c&&a+c>b&b+c>a){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
应急食品(蒙派)
#include<bits/stdc++.h> using namespace std; int sum; int main(){ int a,b,c; cin>>a>>b>>c; if(a+b>c&&b+c>a&&c+a>b){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
王帝
#include<bits/stdc++.h> using namespace std; int main() { int a[3]; cin>>a[0]>>a[1]>>a[2]; sort(a,a+3); if(a[0]+a[1]>a[2]) { cout<<"yes"; } else{ cout<<"no"; } return 0; }
大西瓜卷王
耐高总冠军 张文杰
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(b+c>a && a+c>b && a+b>c){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
不喜欢acgo
共74条