5 条题解

  • 2
    @ 2019-03-23 21:16:16
    x=float(input())
    y=float(input())
    z=float(input())
    if x+y>z and x+z>y and y+z>x: print('Y')
    else: print('N')
    
    

    并不追求行数的养老代码

  • 1
    @ 2020-09-16 22:47:15

    #python3

    a=float(input())
    b=float(input())
    c=float(input())
    if a+b>c and b+c>a and a+c>b:
        print("Y")
    else:
        print("N")
    
  • 0
    @ 2021-06-27 18:01:05

    a=float(input())
    b=float(input())
    c=float(input())
    if a+b<=c:print("N")
    elif a+c<=b:print("N")
    elif b+c<=a:print("N")
    else:print("Y")

  • 0
    @ 2020-01-07 19:15:14

    快活啊
    #include<iostream>
    using namespace std;
    int main()
    {
    float a,b,c;
    cin>>a>>b>>c;
    if(a+b>c&&a+c>b&&b+c>a) cout<<"Y";
    else cout<<"N";
    }

  • 0
    @ 2019-03-22 12:17:52

    a=float(input())
    b=float(input())
    c=float(input())
    if a+b>c and b+c>a:
    print("Y")
    else:
    print("N")

  • 1

信息

ID
1000
难度
7
分类
(无)
标签
(无)
递交数
2295
已通过
381
通过率
17%
被复制
5
上传者