1 条题解

  • 0
    @ 2022-12-24 9:49:10
    #include <bits/stdc++.h>
    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";
        else
            cout << "no";
        return 0;
    }
    
    • 1

    信息

    ID
    274
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    (无)
    递交数
    166
    已通过
    89
    上传者