实验七第三题

#include <stdio.h>
#include<math.h>
int main(void )

{
    double x,y;
    printf("Enter x:");
    scanf("%Lf",&x);
    if(x<-2){
        y=x*x;
    }
    else if(x<=2){
        y=2+x;
    }
    else{
        y=sqrt(x*x+x+1);
    }
    printf("y=%.2f
",y);

    return 0;
    }    
原文地址:https://www.cnblogs.com/huangsilinlana/p/3398564.html