vb編寫程式計算如下分段函式並輸出結果其中值

2021-03-03 21:28:40 字數 3407 閱讀 2973

1樓:匿名使用者

dim x as integer=inputbox("請輸入值")

' dim result as integer=你的計算**

msgbox(result)

1、vb6.0編寫程式,計算下列分段函式,要求輸入x的值,輸出y的值。(30分,其中介面設計詳細全面2分):

2樓:紅山人

'1、編

來寫程式,計算下列分段源函式,要求輸入x的值bai,輸出y的值。(30分,du其中介面zhi設計詳細全面2分):dao

'y=sin(πx/20) 0<=x<10'y=x2/10 10<=x<100

'y=1100-x 100<=x<200'y=990 x>=200

const pi = 3.1415926

private sub form_click()show

dim x!, y!

x = val(inputbox("請輸入x值"))if x >= 0 and x < 10 theny = sin(pi * x / 20)

elseif x >= 10 and x < 100 theny = x ^ 2 / 10

elseif x >= 100 and x < 200 theny = 1100 - x

elseif x >= 200 then

y = 990

end if

print "x="; x; "y="; yend sub

編制一個c程式,計算並輸出下列分段函式的值(其中x有鍵盤輸入)

3樓:匿名使用者

答案來在下面,可以執行一下:#include#include

void main()

else if(0<=x<10&&x!=2&&x!=3)else

printf("分段函式值zhi=%f\n",y);

goto cuit;/*跳到標籤處,為了dao多次測試程式*/}

c語言編寫程式,完成下面分段函式y 的計算, x由鍵盤輸入

4樓:暖陽和風

#include "stdio.h"

void main()

5樓:千鋒教育

#include

int main(void)else if (x>=1&&x<12) else

printf("y= %d\n",y);

return 0;}

6樓:明_礬

#include "stdio.h"

void main()

else if( x >= 1 && x < 12 )else}

7樓:匿名使用者

float funval(float param)

int main()

編寫程式,從鍵盤輸入x的值,計算並輸出分段函式y的值y=-1(x<0)

8樓:匿名使用者

#include

int main()

9樓:匿名使用者

#include

int sign(int x);

int main()

int sign(int x)

10樓:精點操

#include

using namespace std;

void main()

{int x=0;

int y=0;

cout<<"請輸入整數值"<>x>>endl;

if (x<0){

y=-1;

cout<0){

y=1;

cout<是新手,剛學c++,寫出來給你,不知道對不對,大家一起進步吧,希望能幫到你。

11樓:匿名使用者

這個簡單 兩個if else就解決

編寫程式完成如下分段函式:要求從鍵盤輸入x值,經程式計算後輸出y值

12樓:匿名使用者

#include

void main()

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

13樓:你不愛吃烤肉

如下bai

:#include

#include

int main()

else if(x <= 10)

else

printf("%f",result);

return 0;

}擴充套件zhi資料:

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

#include

#include

int main()

14樓:行覓蒿秋白

如下copy:

#include

#include

intmain()

else

if(x

<=10)else

printf("%f",result);

return0;}

擴充套件資料:

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

#include

#include

intmain()

15樓:小情

已寫bai好du:

#include

#include

int main()

else if(x <= 10)

else

printf("%f",result);

return 0;}

16樓:huc_千影

void main()

else if(x>10)

else

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

求大神,**等。程式設計計算分段函式,根據鍵盤輸入的x值,在螢幕輸出y值.

17樓:匿名使用者

#include

#include

int main()

_____________

______________

printf("y=%f\n", y);

return 0;}

18樓:奉孝新生

#include

#include

void main()

VB題計算分段函式急,用vb編寫一段計算分段函式

答案選擇c 如果b對的話,當x 5時,y 1 這是不對的。答案選擇c 5657837567568 vb問題。用select case語句方法寫出分段函式?private sub command1 click dim x as integer,y as doublex val inputbox ent...

用VB編寫程式,用VB編寫一個程式

樓上的,不許要引用吧 option explicit private declare function getdrivetype lib kernel32 alias getdrivetypea byval ndrive as string as long private declare funct...

用VB編寫程式,求S A B C ,階乘的計算分別用Su

1 用sub實現的過程bai 如下 du dim a,b,c,s a 1b 2 c 3s 0 sub jc x dim v v 1while x 0 v v x x x 1 wend s s v end sub jc a jc b jc c msgbox s 2 用function的過程zhi如下 ...