6 条题解

  • 0
    @ 2023-5-11 17:16:28

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

    信息

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