假定有如下的Sub过程: Sub sfun(x As Single,Y As Single) t=x:x=t/y y=t Mod y End Sub 在窗体上添加一个命令按钮(名为 Commandl),然后编写如下事件过程: Pfivme Sub Command l_Click() Dim a As single,b As single a=5:b=4 sfuna,b MsgBox a&chr(10)+chr(13)&b End Sub打开窗体运行后,单击命令按钮,消息框的两行输出内容分别为( )。