本题目要求计算下列分段函数f(x)的值:
输入在一行中给出实数x。
在一行中按“f(x) = result”的格式输出,其中x与result都保留一位小数。
10
f(10.0) = 0.1
0
f(0.0) = 0.0
#include<stdio.h>
#include<math.h>
int main()
{
float a,x;
scanf("%f", &x);
if (x == 0)
{
printf("f(0.0) = 0.0\n");
}
else if (x<0)
{
x = fabs(x);
a = (float)1.0 / x;
printf("f(%.1f) = %.1f\n", -x,-a);
}
else if (x > 0)
{
a = (float)1.0 / x;
printf("f(%.1f) = %.1f\n", x, a);
}
return 0;
}
?