问题 单项选择题

有如下事件过程:  Function UNC (ByVal x As Integer,ByVal y As Integer) As Integer   Do While y<>0    sic=x/y    x=y    y=sic   Loop   UNC=x  End Function  以下是该函数的调用过程,该程序的运行结果是()。  PriVate Sub COmmand1_Click()    Dim a As Integer    Dim b As Integer    a=12    b=2    x=UNC (a,b)    Print x  End Sub

A.123

B.3120

C.312

D.3012

答案

参考答案:A

解析:本题考查的是考生对引用的掌握,ref实际上就是变量num的别 名,所以ref=ref+2时,num已经变成了3。

选择题
单项选择题