[填空题] 有如下函数过程: Function gys(By Val x As Integer,ByVal 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
参考答案:
E问题解析:
本题的难点是Do While…Loop循环控制问题。y=2、5、0.4的过程中,最后x=5。

![[填空题] 有如下函数过程: Function gys(By Val x As Integer,ByVal y As Integer)As Integer Do While Y<#0 pr [填空题] 有如下函数过程: Function gys(By Val x As Integer,ByVal y As Integer)As Integer Do While Y<#0 pr](http://www.mshxw.com/aiimages/31/250424.png)
