[题目描述]
编写程序,计算下列分段函数y=f(x)的值。
y=-x+2.5; 0 <= x < 5
y=2-1.5(x-3)(x-3); 5 <= x < 10
y=x/2-1.5; 10 <= x < 20
[输入]
一个浮点数N,0 ≤ N < 20。
[输出]
输出N对应的分段函数值:f(N)。结果保留到小数点后三位。
[输入样例]
1.0
[输出样例]
1.500
#include <iostream> #include <iomanip> using namespace std; int main() { double x,y,t; cin>>x; t=int(x)/5.0; switch(int (t)) { case 0: y=(-x)+2.5; break; case 1: y=2-1.5*(x-3)*(x-3); break; case 2: case 3: y=x/2-1.5; break; } cout<<setiosflags(ios::fixed)<<setprecision(3)<<y<<endl; return 0; }
标签:case,信息学,T1051,分段,1.5,int,C++,break,函数 From: https://www.cnblogs.com/qingshaonianbiancheng/p/16717307.html