寫法1
創(chuàng)新互聯(lián)主營山東網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件定制開發(fā),山東h5小程序開發(fā)搭建,山東網(wǎng)站營銷推廣歡迎山東等地區(qū)企業(yè)咨詢
if (x-5 x0) y = x;
if (x == 0) y=x-1;
if (x0 x10) y = x+1;
寫法2
if (x-5 x10)
{
y=x; //在這個(gè)范圍,不論怎樣,先把y賦值為x
if (x=0) //在這個(gè)范圍,需要對(duì)y值做修改
{
y = y-1; //先把y-1再說,對(duì)應(yīng)x=0的情況,如果x!=0,那么我們?cè)俅涡薷?/p>
if(x0)
y = y+2; //剛剛y-1了,所以需要+2
}
}
寫法3,終于是正常點(diǎn)的做法了
if (x-5 x0) y=x;
else
{
if (x10)
{
if (x==0) y=x-1;
else y=x+1;
}
}
寫法4
switch(x)
{
case 0:
y=x-1;
break;
case -4;
case -3;
case -2;
case -1;
y=x;
break;
case 1;
case 2;
case 3;
case 4;
case 5;
case 6;
case 7;
case 8;
case 9;
y=x+1;
break;
}
#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");
}
#include iostream
#include cmath
int main()
{
using namespace std;
cout"請(qǐng)輸入x的值(x10):";
double x,y;
cinx;
int n;
if(x=10x20)
n=1;
else if(x=20x30)
n=2;
else if(x=30x40)
n=3;
else if(x=40x50)
n=4;
else if(x=50)
n=5;
switch(n)
{
case 1:
y=log10(x);
break;
case 2:
y=log10(x)/log10(3);
break;
case 3:
y=cos(x);
break;
case 4:
y=pow(x,5);
break;
case 5:
y=1.0/tan(x);
break;
default:
cout"\n你輸入的值不在取值范圍內(nèi),再見!\n";
break;
}
if(x10)
cout"\n本函數(shù)的y值為:"y"。*^o^*\n";
return 0;
}
#include stdio.h
#include math.h
int main()
{
float x,y;
printf("please input x:");
scanf("%f",x);
if(x0 x!=-3)
?y = pow(x,2)+x-6;
else if(x=0 x10 x!=2 x!=3)
?y = pow(x,2)-5*x+6;
else
?y = pow(x,2)-x-1;
printf("y=%f\n",y);
return 0;
}
#include stdio.h
#include iostream
using namespace std;
int main()
{
int x ;
scanf("%d",x);
int i;
int y;
if(x1)
i=1;
else if(x=1 x10)
i=2;
else if(x=10)
i=3;
switch(i)
{
case 1:
y=x;
break;
case 2:
y=2*x;
break;
case 3:
y=3*x-1;
break;
}
coutyendl;
return 0;
}
#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;
}
擴(kuò)展資料
return 0代表程序正常退出。return是C++預(yù)定義的語句,它提供了終止函數(shù)執(zhí)行的一種方式。當(dāng)return語句提供了一個(gè)值時(shí),這個(gè)值就成為函數(shù)的返回值。
return語句用來結(jié)束循環(huán),或返回一個(gè)函數(shù)的值。
1、return 0,說明程序正常退出,返回到主程序繼續(xù)往下執(zhí)行。
2、return 1,說明程序異常退出,返回主調(diào)函數(shù)來處理,繼續(xù)往下執(zhí)行。return 0或return 1對(duì)程序執(zhí)行的順序沒有影響,只是大家習(xí)慣于使用return(0)退出子程序而已。