本题目要求计算下列分段函数(的值:
注:可在头文件中包含math.h
,并调用sqrt
函数求平方根,调用pow
函数求幂。
输入在一行中给出实数x。
在一行中按“f(x) = result”的格式输出,其中x与result都保留两位小数。
10
f(10.00) = 3.16
-0.5
f(-0.50) = -2.75
1 #include <stdio.h> 2 #include <math.h> 3 int main(){ 4 float x,y; 5 scanf("%f",&x); 6 if(x>=0) 7 y=sqrt(x); 8 else 9 y=pow((x+1),2)+2*x+1.0/x; 10 printf("f(%.2f) = %.2f\n",x,y); 11 return 0; 12 }
原文:https://www.cnblogs.com/wsl8848/p/14550960.html