#include<stdio.h>
#include<math.h>/*调用数学函数*/
int main(void)
{
double x,y;/*定义两个双精度浮点型变量*/
printf("Enter x:
");/*输入x*/
scanf("%lf",&x);
if(x<-2){/*满足x<2*/
y=x*x;
}
else if(x>2){/*满足x>2*/
y=sqrt(x*x+x+1);/*调用求算术平方根函数*/
}
else{/*既不满足x<2,也不满足x>2*/
y=2+x;
}
printf("y=%.2f
",y);
return 0;
}