下列VB程序运行时,单击命令按钮Command1后,文本框Text1中显示的内容是(1) ,文本框Text2中显示的内容是____(2) 。 Private Sub Command1_Click() Dim i As Integer, c As Integer, n As Integer c =" 0:" n = 10 For i =" 1" To n If n Mod i =" 0" Then c =" c" + 1 Next i Text1.Text = Str(n) Text2.Text = Str(c) End Sub