有如下函数过程: Function gys(By Val x As Integer,By Val y As Integer) As Integer Do While y0 preminder=x/y x=y y=preminder Loop gys=x E

admin2013-01-23  25

问题 有如下函数过程:
Function gys(By Val x As Integer,By Val y As Integer) As Integer
Do While y<>0
preminder=x/y
x=y
y=preminder
Loop
gys=x
End Function
以下是调用该函数的事件过程,该程序的运行结果是______。
Private Sub Command1_Click()
Dim a As Integer,b As Integer
a=10:b=2
x=gys(a,B)Print x
End Sub

选项

答案5

解析 本题的难点是Do While…Loop循环控制问题。y=2、5、0.4的过程中,最后x=5。
转载请注明原文地址:https://jikaoti.com/ti/GAO0FFFM
0

最新回复(0)