重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
抱歉,刚才有两个分号是用中文输入法输入的,导致C无法识别。
网站制作、建网站找专业网络公司成都创新互联:定制网站、模板网站、仿站、重庆小程序开发、软件开发、成都APP应用开发等。做网站价格咨询成都创新互联:服务完善、十年建站、值得信赖!网站制作电话:028-86922220
语句结束要加分号。1=x10要分开写。条件语句后面若不只一句,要用{}括起来。你的y之前没有定义。
又改了一遍,这回我运行了一下没有问题,你再看看:
#include stdio.h
#include math.h
void main()
{
double x,y;
printf("输入x:\n");
scanf("%lf",x);
if(x1)
y=x;
else
{
if((1=x)(x10))
y=2.0*x-1;
else
y=3.0*x-11;
}
printf("%lf\n",y);
}
#includestdio.h
#includemath.h
void main()
{
int x;
float Y;
printf("please input x\n");
scanf("%d",x);
if(x 0)
Y = 1 + exp(x); //数学函数,计算e的x次方
else if(x == 0)
Y = 1;
else
Y = log(x * x); //数学函数,计算x的平方,以e为底
printf("%.4f\n",Y);
}
please input x
1.0000
Press any key to continue
please input x
1
3.7183
Press any key to continue
please input x
-2
1.3863
Press any key to continue
# include stdio.h
# include math.h
void main()
{
int x;
int y;
while(1)
{
printf("input x:\n");
scanf("%d",x);
if(x-2)
{
y=7-2*x;
}
else if(x=-1 x3)
{
y=5-abs(3*x+2);
}
else
{
y=3*x+4;
}
printf("y is %d\n\n",y);
}
}
这样就可以了,望采纳!