分段函数
程序核心——判断语句
程序
#include<stdio.h>
int main()
{
double x,y;
printf("Enter x:");
scancf("%lf",&x);
if(x<0)
{
y=0;
}
else if(x<=15)
{
y=4*x/3;
}
else
{
y=2.5*x-10.5;
}
printf("f(%.2f)=%.2f",x,y);
}
结果
Enter x:9.5
f(9.50)=12.67
--------------------------------
Process exited after 8.177 seconds with return value 0
请按任意键继续. . .
分析
重点:判断语句,注意判断条件