此题题解
查看原帖
此题题解
911185
Ljr0301楼主2024/12/31 20:38
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main() {
    int a,b,c;
    cin>>a>>b>>c;
     
    if (a+b>c && b+c>a && a+c>b)
      cout<<1;
     else
        cout<<0;
  return 0;
}

2024/12/31 20:38
加载中...