选择题   若有如下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
【答案解析】由题意可知sfun函数实现求除数和求余数的功能,所以最终结果是1.25和1。