#include
#include
int main()
{
double x, y;
scanf(“%lf”, &x);
if (x>=0)
{
y = sqrt(x);
}
else
{
y = pow(x + 1, 2) + 2 * x + 1 / x;
}
printf(“y=f(%f)=%.2f\n”, x, y);
return 0;
}

心得:

1.sqrt是库里面的,开根号

2.pow 幂

3.printf(“y=f((%f)=%.2f\n”,x,y)

4.调用#include放在#include后面