5 条题解

  • 2
    @ 2023-6-20 16:48:54
    #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;
     }
    

    信息

    ID
    612
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    (无)
    递交数
    238
    已通过
    138
    上传者