English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

主程式:輸入一個整數 傳給程序副程式 並輸出傳回的結果
程序副程式: 程序副程式將主程式傳過來的數,判斷其為奇數或偶數傳回去

2007-12-31 09:14:33 · 1 個解答 · 發問者 Anonymous in 電腦與網際網路 程式設計

1 個解答

主程式:
dim n as integer
input n
if Evenodd(n) then
print str(n);" 為偶數"
else
print str(n);" 為奇數"
endif

副程式:
function Evenodd(n as integer) as boolean
if (n mod 2)=0 then
Evenodd=true
else
Evenodd=false
endif
end function

2007-12-31 11:43:44 · answer #1 · answered by mathmanliu 7 · 0 0

fedest.com, questions and answers