假定有如下的Sub过程: Sub S(xAs Single,yAs,Single) t=x:x=t\y y=tModY End Sub 在窗体上画一个命令按钮,然后编写如下事件过程: Private Sub

admin2020-04-18  19

问题 假定有如下的Sub过程:
    Sub S(xAs Single,yAs,Single)
    t=x:x=t\y
    y=tModY
    End Sub
    在窗体上画一个命令按钮,然后编写如下事件过程:
    Private Sub Command1_Click( )
    Dim a As Single,Dim b As Single
    a=5:b=4:S a,b
    Print a,b
    End Sub
    程序运行后,单击命令按钮,输出结果为(    )。

选项 A、5    4
B、1    1
C、1.25    4
D、1.25    1

答案D

解析 本题考察过程调用知识。在命令按钮单击事件过程中,初始时a=5、b=4;在S过程初始时,x=5、y=4,S过程计算后,x=1.25、y=1,所以S过程返回后a=1.25、b=1。
转载请注明原文地址:https://kaotiyun.com/show/mcTp777K
0

最新回复(0)