3 条题解

  • 2
    @ 2020-09-16 22:51:00

    #python3

    a=int(input())
    if a<=2000:
        b=0
    if a>2000:
        b=(a-2000)*0.001
    print("%.2f"%b)
    
  • 0
    @ 2023-10-22 11:00:29

    C++做法
    无脑判断语句就行
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    int r,c=2000;
    cin>>r;
    if(r<=c)
    cout<<"0.00";
    else if(r>c)
    {
    double k=r-c;
    printf("%.2f",k*0.001);
    }
    return 0;
    }

  • 0
    @ 2019-12-22 21:17:10

    m=int(input())
    if m<=2000:
    x=0
    else:
    x=(m-2000)*0.001
    print('{:.2f}'.format(x))

  • 1

信息

ID
1019
难度
8
分类
(无)
标签
(无)
递交数
7456
已通过
1107
通过率
15%
上传者