C语言输入x的值,求出y的值。当x<-1.y=|x+1/2|,x=-1.y=0.x>-1.y=根号下(2x+5)
展开全部
#include <stdio.h>
#include <math.h>
main()
{
double x,y;
scanf("%lf", x);
if(x < -1)
{
y = x + 0.5;
if(y < 0)
{
y = -y;
}
}
else if(x == -1)
{
y = 0;
}
else
{
y = sqrt(2 * x + 5);
}
printf("%lf", y);
}
#include <math.h>
main()
{
double x,y;
scanf("%lf", x);
if(x < -1)
{
y = x + 0.5;
if(y < 0)
{
y = -y;
}
}
else if(x == -1)
{
y = 0;
}
else
{
y = sqrt(2 * x + 5);
}
printf("%lf", y);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
/*本程序在wint c2.0平台编译运行正确*/
#include"stdlib.h"
#include"stdio.h"
#include"math.h"
void main()
{
float x,y;
printf("please input xof visual!\n");
scanf("%f",&x);
if(x<-1.0)
y=fabs(x+1/2.0);
if(x==-1.0);
y=0.0;
if(x>-1.0)
y=sqrt(2*x+5.0);
printf("y=%f",y);
getch();
}
#include"stdlib.h"
#include"stdio.h"
#include"math.h"
void main()
{
float x,y;
printf("please input xof visual!\n");
scanf("%f",&x);
if(x<-1.0)
y=fabs(x+1/2.0);
if(x==-1.0);
y=0.0;
if(x>-1.0)
y=sqrt(2*x+5.0);
printf("y=%f",y);
getch();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询