Dim i As Integer,n As Integer,s As String,ch As String ,t As String
s= Text1.Text : t = "”
For i=1ToLen(s)
ch = Mid(s,i,1)
If ch>="0"Andch<="9"Then
t=t+ch
Else
n = Val(t)
If Sqr(n) = Int(Sqr (m)) Then List1.AddItem Str (n)
End If
Next i
在文本框Text1中输入“2,25,64,8,36”,单击“调试"按钮后,程序可能出现的错误提示为( )