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;
     }
    
    • 0
      @ 2023-6-12 17:14:29

      #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; }

      • 0
        @ 2023-6-12 17:14:12

        #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; }

        • -1
          @ 2023-5-24 16:56:04

          #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; } 真**

          • -4
            @ 2023-5-24 16:48:56

            发的根本不不不

            • 1

            信息

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