1樓:匿名使用者
private sub command1_click()a = inputbox("輸入號碼")
if a > 0 then
msgbox "正數"
elseif a < 0 then
msgbox "負數"
elseif a = 0 then
msgbox "0"
end if
end sub
就這麼簡單 純手打
2樓:匿名使用者
a = inputbox("輸入號碼")
if a > 0 then
msgbox "整數"
elseif a < 0 then
msgbox "負數"
elseif a = 0 then
msgbox "0"
end if
3樓:閩南青柚
用符號判斷 啊
>0 <0 =0
例如判斷text1
if text1.text > 0 thenmsgbox "正數"
end if
if tex1.text < 0 thenmsgbox "負數"
end if
if text1.text = 0 thenmsgbox "這個還用說?"
end if
這是 個例子,相信您已經能夠明白了吧
單擊窗體form1時,用inputbox函式輸入一個整數n,
4樓:天雨下凡
private sub userform_click()dim n as integer
n = val(inputbox("輸入一個整數:"))if n mod 2 = 1 then
msgbox "奇數", vbinformationelse
msgbox "偶數", vbinformationend if
end sub
5樓:呆萌小咖
dim a as integer
a = inputbox("輸入一個數")if a mod 2 = 0 then
msgbox ("偶數")
else
msgbox ("奇數")
end if
編寫程式輸入兩個正整數m和,編寫程式,輸入兩個正整數m 和n 1 m,n 1000 ,輸出m n 之間的所有滿足各位數字的立
碧血玉葉花 include int is int number if s b return 1 else return 0 int main void include include int is int number int main void int m,n,y,result printf m,...
用C 語言編寫程式,遞迴函式,用c 編寫程式用遞迴法計算一個整數的所有數字之和
1 在數學上,關於遞迴函式的定義如下 對於某一函式f x 其定義域是集合a,那麼若對於a集合中的某一個值x0,其函式值f x0 由f f x0 決定,那麼就稱f x 為遞迴函式。在程式語言中,把直接或間接地呼叫自身的函式稱為遞迴函式。函式的構建通常需要一個函式或者一個過程來完成。2 遞迴函式 是建立...
用C語言編寫程式資料結構,用C語言編寫程式 資料結構
第5 題 include include define max 256 typedef int list max typedef int elemtype typedef int status define overflow 1 define ok 1 define list init size 8...