1vb60編寫程式計算下列分段函式要求輸入的

2021-04-21 18:57:41 字數 3088 閱讀 3686

1樓:紅山人

'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

1、編一程式,輸入一個數x,按照下列分段函式計算並輸出y的值。(50分)

2樓:匿名使用者

#include

#include

using namespace std;

main()

//也許有點語法錯誤,呵呵

參考就可以了。

3樓:武端運

#include

main()

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

4樓:匿名使用者

#include

int main()

5樓:匿名使用者

#include

int sign(int x);

int main()

int sign(int x)

6樓:精點操

#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++,寫出來給你,不知道對不對,大家一起進步吧,希望能幫到你。

7樓:匿名使用者

這個簡單 兩個if else就解決

1、有一分段函式如下,請編寫程式,輸入x值,輸出y值。 當x<=-1 y=sinx+2cosx 當-11 30

8樓:浪裡小青魚

|#include

#include

int main()

else if (x>=10)

else

}擴充套件資料

using namespace std;

class cstudent

;int main()

9樓:

#include

#include

#include

int main()

// sin( x ) 要加上括號 。 printf 要用 %g 或者 %f 作為輸出格式這樣才能輸出小數

else if(x<=1) printf("%g\n",1/(x^2-1));

else printf("%g\n",sqrt(x^3-1));}}

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

10樓:匿名使用者

#include

void main()

程式設計序求以下分段函式的值,從鍵盤輸入x,計算並輸出y的值,要求保留2位小數y{2*x x>1;x+2 0<=x<=1;x/2 x<0 5

11樓:

編寫程式,完成下面分段函式y的計算,從鍵盤輸入x值,並輸出y的值。

12樓:匿名使用者

#include

double fun(double x)

int main()

13樓:匿名使用者

program func;

var x:extended;

begin

readln(x);

if x<0 then writeln(-2*x+10)else writeln(3*x+20);

end.

14樓:匿名使用者

void main()

else

printf("y的值為

權:%d",&y);}

15樓:伶俐頑童

#include

using namespace std;

int main()

vb編寫程式,計算如下分段函式並輸出結果,其中x值有鍵盤輸入。 x*x+x (x<0) y = 100 (x=0) x*x-x (x>0)

16樓:匿名使用者

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

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

msgbox(result)

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

在窗體上放一個命令按鈕,將 複製到窗體裡,程式執行單擊一次命令按鈕可輸入一次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...

編寫vb程式,求1編寫一個vb程式,求11213141n的值。測試資料n50答案

private sub mand1 click print 第3題 dim n as integer,s as doublen inputbox n 50 for i 1 to n s s 1 i next i print sum n format s,0.00 end sub private su...

VB編寫程式,計算並輸出下面級數前n項中 n 50 奇數項的和。1 2 3 2 3 4 3 4 5n n 1n

private sub mand1 click dim i as long,sum as longfor i 1 to 50 step 2sum sum i i 1 i 2 next msgbox 級數 bai前du50項奇 zhi數項 dao和為專 屬 sum end sub 編寫程式,計算並輸出...