竞赛
考级
#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; }
qwerty1596
acgoacgo
无敌的鳖佬仔给老爷爷ccb
#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; }
爱向自己
majmDZB
#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; }
KFCKUN
骗分过样例,暴力出奇迹(互关)
「欢愉」花火
题解
回来看看
suzifeng
༺ཌༀ☯追光·少年☯ༀད༻
宇宙炒鸡吴迪炸裂AC狗
#include <iostream> using namespace std; int main(){ double a,b,c; cin >> a >> b >> c; if(((a+b)>c) and ((a+c)>b) and ((b+c)>a)) { cout << "yes"; }else{ cout << "no"; } return 0; }
皮皮虾|AndyDrSt
生腌半仙like 91
#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 main(){ int a,b,c; cin>>a>>b>>c; if((a+b)>c and (b+c)>a and (c+a)>b){ cout<<"yes"; } else cout<<"no"; return 0; }
坤
AC是最好的
定义一个变量(布尔) 如果n=1就输出 shangdaima
黑客_复仇者_ZDZL _大奶龙
看
AK君
666
共98条