access vba程式設計問題

2022-11-14 14:42:01 字數 828 閱讀 2769

1樓:匿名使用者

在窗體上建兩個文字框 ,一個(text1)用來輸入x,一個(text3)用來輸出y,再建一個按鈕(command0

),把**寫到按鈕單擊事件裡去,在text1中輸入一個數字,再單擊按鈕command0,然後在text3中看結果

private sub command0_click()dim x, y as single

x = me.text1

if x > 0 then

y = sqr(x)

else

if x = 0 then

y = 0

else: y = abs(x)

end if

end if

me.text3 = y

end sub

2樓:匿名使用者

這一段要放在

function 程式名(引數)

if x>0 then

...end if

end function

中可以直接執行,

要測試 的話

在最後加入 msgbox "y=" & y完整的程式如下

public function test1(x as integer) as single

if x > 0 then

y = sqr(x)

else

if x = 0 then

y = 0

else: y = abs(x)

end if

msgbox "y=" & y

test1 = y

end function

C 程式設計問題,C 程式設計問題

include using namespace std void circle void else break while 1 return 0 c 程式設計,出現2 個無法解析的外部命令,怎麼回事?client.h ifndef client define client include inclu...

C 程式設計問題

1.首先 cin a,b,c 沒有這種寫法,編譯的時候可能能通過,但是會有run time error 必須分開寫 cin a cin b cin c 2.if裡面的條件同時滿足用 間隔,後面的內容要用花括號包著,面積要重新定義變數,乘法要寫出來 if a b c a c b b c a else ...

請教C 程式設計問題,請教一個C 程式設計問題

我的思路是這樣 每行一共有9個輸出,每一行第5個必然是 就以這個 把圖形分為兩半,那麼第一行到第五行輸出的空格數是遞減的,每行減少一個空格,這樣看問題就好解決了,避開了每行輸出的 是奇數的問題,然後再對稱處理一下就ok c 如下 include using namespace std int mai...