7-76 计算分段函数[3] (10分)
标签:code include lse scanf else can bar htm 注意
本题目要求计算下列分段函数f(x)的值:
输入在一行中给出实数x。
在一行中按“f(x) = result”的格式输出,其中x与result都保留一位小数。
10
f(10.0) = 0.1
234
f(234.0) = 234.0
注意x是实数不能直接用==或者!= 要用绝对值去做
#include<stdio.h>
#include<math.h>
int main()
{
double x;
scanf("%lf",&x);
if(fabs(x-10)<1e-6)
printf("f(%.1f) = %.1f\n",x,1/x);
else
printf("f(%.1f) = %.1f\n",x,x);
return 0;
}
标签:code include lse scanf else can bar htm 注意
原文地址:https://www.cnblogs.com/bigageyuan/p/13831942.html