修改如下,//注釋并且修改,x應該是數(shù)組
創(chuàng)新互聯(lián)是少有的成都網(wǎng)站制作、成都網(wǎng)站設計、營銷型企業(yè)網(wǎng)站、微信小程序、手機APP,開發(fā)、制作、設計、賣友情鏈接、推廣優(yōu)化一站式服務網(wǎng)絡公司,于2013年開始,堅持透明化,價格低,無套路經營理念。讓網(wǎng)頁驚喜每一位訪客多年來深受用戶好評
#include?stdio.h
#include?math.h
int?main(void)
{
int?repeat,n;
double?x[100],y;? ? ? ? ? ? ? //double?x,y;
scanf("%d",repeat);
for(n=0;nrepeat;n++)? ? //for(n=1;n=repeat;n++)
scanf("%lf",x[n]);? ? ? ? ? ?//scanf("%lf",x);
for(n=0;nrepeat;n++)? ? ? ?//for(n=1;n=repeat;n++)
{
? if?(x[n]!=0)? ? ? ? ? ? ? ?//if(x!=0)
? y=1/x[n];? ? ? ? ? ? ? ? ? ?//1/x
? else
? y=0;
? printf("f(%.2f)=%.3f\n",x[n],y);? ? ? ? //?printf("f(%.2f)=%.3f\n",x,y);? ? ? ?
}
}
#include
int?main()
{
int?x,y;
scanf("%d",x);
if(0xx10)?y=3*x+2;
else
{if(x=0)?y=0;
else
{if?(x0)?y=x*x;
else?printf("go?die\n");
}
}
printf("%d",y);
return?0;
}該程序的分段函數(shù)如下:
f(x)=3x+2? (0x10)
f(x)=1???????? (x=0)
f(x)?=?x*x??? (x0)
#include stdio.h
#include math.h
void main()
{
float x;
double y;
printf("Please input the value of x:");
scanf("%f",x);
if(x=-10x=4)
{
y=fabs(x-2);
printf("y=%.2f\n",y);
}
else if(x=5x=7)
{
y=x+10;
printf("y=%.2f\n",y);
}
else if(x=8x=12)
{
y=pow(x,4);
printf("y=%.2f\n",y);
}
else
printf("No answer\n");
}
你只給出了X的取值范圍,函數(shù)表達式呢,怎么沒有給出?
我假設這樣:
Y=X (X〈-1)
Y=1(-1〈=X〈=1)
Y=X*X(X〉1)
用C語言實現(xiàn),輸入X的值,求Y的值,那么可以表示為:
int function(int x)
{
int y;
if(x-1)
{
y=x;
}
else if((x=-1)(x=1))
{
y=1;
}
else
{
y=x*x;
}
return y;
}
#include math.h
int main()
{
double x,y;
scanf("%lf",x);
if (x0)
y=0.5*(-x);
else
if (x10)
y=exp(x)+3;
else
if(x20)
y=log10(x);
else
if (x30)
y=pow(x,1.5);
else
if (x50)
y=pow (x,0.5)-1;
else
y=3*cos(x);
printf("y=%lf\n",y);
return 0;
}
擴展資料
return 0代表程序正常退出。return是C++預定義的語句,它提供了終止函數(shù)執(zhí)行的一種方式。當return語句提供了一個值時,這個值就成為函數(shù)的返回值。
return語句用來結束循環(huán),或返回一個函數(shù)的值。
1、return 0,說明程序正常退出,返回到主程序繼續(xù)往下執(zhí)行。
2、return 1,說明程序異常退出,返回主調函數(shù)來處理,繼續(xù)往下執(zhí)行。return 0或return 1對程序執(zhí)行的順序沒有影響,只是大家習慣于使用return(0)退出子程序而已。
#include stdio.h
#include math.h
int main(void)
{
int repeat, ri;
double x, y;
scanf("%d", repeat);
for(ri = 1; ri = repeat; ri++){
scanf("%lf",x);
y=x=0?sqrt(x):pow(x+1,2)+2*x+1/x;
printf("f(%.2f) = %.2f\n", x, y);
}
}
#include?stdio.h
float?fun(float?x)
{
if(x0)?return?1;
else?if(x==0)?return?0;
else?return?-1;
}
int?main()
{
float?x;
scanf("%f",x);
printf("%f",fun(x));
return?0;
}