有如下SUB过程: Sub s(x As Single,y As Single) t=x x=t / y y=t Mod y End Sub 在窗体上添加一个命令按钮,然后编写如下事件过程: Private Sub F

admin2010-11-20  39

问题 有如下SUB过程:
Sub s(x As Single,y As Single)
    t=x
    x=t / y
    y=t Mod y
End Sub
在窗体上添加一个命令按钮,然后编写如下事件过程:
Private Sub Form_Click()
    Dim a As Single
    Dim b As Single
    a=5
    b=4
    s a,b
    Print a,b
End Sub
则程序运行后,单击命令按钮,输出的结果为【  】 。

选项

答案1.25,1

解析 调用s过程,传入"a=5,b=4"。t=5 , x=5/4, 故x=1.25;y=5%4,故y=1。返回并输出(1.25,1)
转载请注明原文地址:https://kaotiyun.com/show/bnhp777K
0

最新回复(0)