delete pics to save space
This commit is contained in:
11
history_source/信息学奥赛一本通/1.3.6.cpp
Normal file
11
history_source/信息学奥赛一本通/1.3.6.cpp
Normal file
@ -0,0 +1,11 @@
|
||||
#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\n");
|
||||
else printf("no\n");
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user