选择题
下列过程的功能:将输入的整数分解为质数之乘积。例如,输入18,则输出2,3,3,;输入125,则输出5,5,5,。
Private Sub Command_Click()
x=Val(InputBox('请输入一个整数'))
out$=''
y=2
Do While(______)
If(x Mod y=0)Then
out$=out$&y&','
x=x/y
Else
y=y+1
End If
Loop
MsgBox out$
End Sub
为实现指定功能,程序空白处应填写的语句是______。