P68. 下列功能的过程是:将输入的整数分解为质数的乘积,例如,输入24,则输出2,2,2,3,输入100,则输出2,2,5,5,. Private Sub Command1_Click() x=Val(InputBox("请输入一个整数")) out$="" y=2 Do While y<=x If x Mod y=0 Then out$ =out$ & y &"," x=x/y Else [] End If Loop MsgBox out$ End Sub 为实现指定功能,程序[]处应填写的语句是