1 条题解

  • 0
    @ 2025-1-23 10:50:28
    #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;
    }
    
    • 1

    信息

    ID
    41
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    17
    已通过
    9
    上传者