提交时间:2024-01-18 14:37:55

运行 ID: 36945

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