抱歉,剛才有兩個(gè)分號(hào)是用中文輸入法輸入的,導(dǎo)致C無法識(shí)別。
網(wǎng)站制作、建網(wǎng)站找專業(yè)網(wǎng)絡(luò)公司成都創(chuàng)新互聯(lián):定制網(wǎng)站、模板網(wǎng)站、仿站、重慶小程序開發(fā)、軟件開發(fā)、成都APP應(yīng)用開發(fā)等。做網(wǎng)站價(jià)格咨詢成都創(chuàng)新互聯(lián):服務(wù)完善、十年建站、值得信賴!網(wǎng)站制作電話:028-86922220
語句結(jié)束要加分號(hào)。1=x10要分開寫。條件語句后面若不只一句,要用{}括起來。你的y之前沒有定義。
又改了一遍,這回我運(yùn)行了一下沒有問題,你再看看:
#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); //數(shù)學(xué)函數(shù),計(jì)算e的x次方
else if(x == 0)
Y = 1;
else
Y = log(x * x); //數(shù)學(xué)函數(shù),計(jì)算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);
}
}
這樣就可以了,望采納!