选择题   若有如下Sub过程:
    Sub sfun(x As Single, y As Single)
    t=x
    x=t/y
    y=t Mod y
    End Sub
    在窗体中添加一个命令按钮Command33,对应的事件过程如下:
    Private Sub Command33_Click()
    Dim a As Single
    Dim b As Single
    a=5; b=4
    sfun(a, b)
    MsgBox a & chr(10)+chr(13)&b
    End Sub
    打开窗体运行后,单击命令按钮,消息框中有两行输出,内容分别为______。
 
【正确答案】 B
【答案解析】此题考查函数的调用情况,其中先执行t=x,x=t/y=13/4=1.25,y=t mod y=13mod4=1,所以答案选择B。