vb中計算下列分段函式的值,VB中,計算下列分段函式的值

2021-12-20 13:59:44 字數 3634 閱讀 3397

1樓:

input "x=";x

if x>0 and x<100 theny=0.9*x

elseif x>=100 and x<300 theny=0.85*x

elseif x>=300 then

y=0.82*x

end if

print "y=";yend

vb編寫程式,計算分段函式

2樓:老牛帶你看奇聞

在窗體上放一個命令按鈕,將**複製到窗體裡,程式執行單擊一次命令按鈕可輸入一次n的值

**如下:

private sub command1_click()dim n, y as single

n = inputbox(" 請輸入n的值")select case n

case is < 0

y = 2 * n + 5

case 0

y = 0

case is > 0

y = 3 * n - 1

end select

msgbox "y=" & y

end sub

3樓:在世貿天階灌籃的高飛燕草

看我的一行

private sub command1_click()dim n, y as single

n = inputbox(" 請輸入n的值")y = iif(x<0,2 * n + 5,iif(x = 0,0,3 * n - 1))

msgbox "y=" & y

end sub

4樓:軍廣英綦錦

這位仁兄是個新手吧!彆著急,慢慢來!加油!

dimn,yas

integerifn

<0theny=

3*n+

2elseifn=

0theny=

0elseif

n>0theny=

2*n-

1endif

5樓:韌勁

dim x as integer

if x < 0 then

elseif x >= 0 and x < 10 thenelseif x >= 10 and x < 30 thenelseif x >= 30 and x < 50 thenelse

end if

vb中由鍵盤輸入一個整數x 求下面分段函式的值

計算下列分段函式的值,x的值由鍵盤輸入 c語言輸入

6樓:你不愛吃烤肉

如下bai

:#include

#include

int main()

else if(x <= 10)

else

printf("%f",result);

return 0;

}擴充套件zhi資料:

c語言dao計算分段函式專值的簡單代屬碼:

#include

#include

int main()

7樓:行覓蒿秋白

如下copy:

#include

#include

intmain()

else

if(x

<=10)else

printf("%f",result);

return0;}

擴充套件資料:

c語言計算分段函式值的簡單**:

#include

#include

intmain()

8樓:小情

已寫bai好du:

#include

#include

int main()

else if(x <= 10)

else

printf("%f",result);

return 0;}

9樓:huc_千影

void main()

else if(x>10)

else

printf("輸出y是%f",y);}

程式設計計算下列分段函式值,輸出格式如下:x=具體值,f(x)=具體值 10

10樓:冰魄

scanf(「%f」,&x)的意思是使用者輸入的數是一個小數(浮點數),將接收到得使用者輸入存入變數x中。

float表示浮點數,也就是小數。float x,y的原因是滿足x > 0或x <= 0的數既包括整數也包括小數,所以應該用float而不能用int。

採用float最終的函式圖象會是兩條射線,而採用int會是一個個孤立的點。

但願能幫到你,希望採納!

11樓:二中混過

function y=fun0318(x)if x<3&x~=-3

y=x^2+x-6;

elseif (x>=0)&(x<10)&(x~=2)&(x~=3)y=x^2-5*x+6;

else

y=x^2-x-1;

end儲存執行

fun0318(-1)

ans =

-6fun0318(2)

ans =

0fun0318(20)

ans =379

vb中怎麼程式設計計算分段函式

12樓:扶桑看天

dim x as integer

if x < 0 then

elseif x >= 0 and x < 10 thenelseif x >= 10 and x < 30 thenelseif x >= 30 and x < 50 thenelse

end if

怎麼用vb編碼計算分段函式

13樓:反倒是屠禮品

#include

int main()

{int x,y;

scanf("%d",&x);

if(0

該程式的分段函式如下:

f(x)=3x+2  (0

f(x)=1         (x=0)

f(x) = x*x    (x<0)

如果輸入x值不再取值範圍內,列印go die...

學好程式設計最重要的是自己要思考,要想。不然沒有任何進步。

vb分段計算

14樓:聽不清啊

private sub command1_click()x = val(text1)

if x <= 0 then y = abs(x) else y = log(x)

text2 = y

end sub

根據下面提示資訊編寫程式,計算下面分段函式的值

15樓:

#include

void main()

VB程式設計 程式設計計算下列分段函式值

if x 0 then f x 2 x 6 elseif x 10 and x 0 and x 2 and x 3 then f x 2 5 x 6 else f x 2 x 1 end if if x 0 then f x 2 x 6 elseif x 10 and x 2 and x 3 the...

使用函式計算分段函式的值 輸入x,計算並輸出下列分段函式f

答案在復下面,可以執行一下 制 include includevoidmain elseif 0 x 10 x 2 x 3 elseprintf 分段函 數值 f n y gotocuit 跳到標籤處,為了多次測試程式 程式設計.輸入實數x 計算並輸出下列分段函式f x 的值 保留 位小數 incl...

用C語言計算分段函式的值,謝謝,C語言程式設計 求分段函式的值

你這bai題可真不容易噢,親自弄的,du還有不懂不,有直zhi接問我好了dao include main include double function double x int main void include int main return 0 不知 du道是這個意思不zhi?輸dao入一個x...