[填空題] 運(yùn)行下列程序,單擊Command1命令按鈕后,則在窗體上顯示第一行和第二行的結(jié)果分別是 (14) 和 (15) 。 Private Sub Com
2021-07-20
[填空題] 運(yùn)行下列程序,單擊Command1命令按鈕后,則在窗體上顯示第一行和第二行的結(jié)果分別是 (14) 和 (15) 。
Private Sub Command1_Click( )
t = 1: x = 2: y = 3: z = 4
If t > 0 Or t = x And x <> y Or y > z Then
t = fun1(t, z)
Print t
Else
t = fun1(x, y)
Print t
End If
Print x
Print y
End Sub
Function fun1(ByVal x As Integer, ByVal y As Integer)As Integer
Do While y <> 0
t = x y
x = y
y = t
Loop
fun1 = x
End Function
正確答案:D
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。