9 条题解

  • -1
    @ 2024-5-28 22:13:20

    #include 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" << endl; } else { cout << "no" << endl; } return 0; }

    信息

    ID
    879
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    590
    已通过
    312
    上传者