本题目要求计算下列分段函数 f(x) 的值:
注:可在头文件中包含 math.h,并调用 sqrt 函数求平方根,调用 pow 函数求幂。
输入格式:
输入在一行中给出实数 x。
输出格式:
在一行中按 “f(x) = result” 的格式输出,其中 x 与 result 都保留两位小数。
输入样例1:
10
输出样例1:
f(10.00) = 3.16
输入样例2:
-0.5
输出样例2:
f(-0.50) = -2.75
来源:
来源:PTA | 程序设计类实验辅助教学平台
链接:https://pintia.cn/problem-sets/13/exam/problems/398
提交:
题解:
#include<stdio.h>
#include<math.h>
int main(void) {
double x;
scanf("%lf", &x);
double result = x >= 0 ? pow(x, 0.5) : pow((x + 1), 2) + 2 * x + 1.0 / x;
printf("f(%.2lf) = %.2lf\n", x, result);
return 0;
}