6 条题解

  • 1
    @ 2023-6-5 14:56:51

    #include<iostream> #include<iomanip> using namespace std; int main(){ double x,y; cin>>x; if(0<=x&&x<5){ y=-x+2.5; } else if(x<10){ y=2-1.5*(x-3)*(x-3); } else if(x<20){ y=x/2.0-1.5; } cout<<fixed<<setprecision(3)<<y;

    return 0; }

    信息

    ID
    609
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    (无)
    递交数
    355
    已通过
    143
    上传者