Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
29546 lnx 分段函数 C++ 通过 0 MS 244 KB 298 2023-10-31 18:45:50

Tests(1/1):


#include<iostream> using namespace std; int main() { float x; cin>>x; if(x>=0&&x<5) { float y=-x+2.5; printf("%.3f",y); } if(x>=5&&x<10) { float y=2-1.5*(x-3)*(x-3); printf("%.3f",y); } if(x>=10&&x<20) { float y=x/2-1.5; printf("%.3f",y); } return 0; }


测评信息: