編寫一個VB程序,實現(xiàn)如下功能:在文本框text1中輸入英文句子,單擊“第1個最長單詞”按鈕,找到第1個最長單詞并顯示在文本框text2中.運行效果如圖所示 為實現(xiàn)上述功能,請在橫線處填入合適代碼 Private Sub Command1_Click ( )Dim s As String,m As String Dim n As Integer,c As Integer,max As Integer,t As Integer s=Text1.Text n=Len(s) c=0 max=0 For i=1To n m=① 截取字符串中的每個字符 If m>=“a“And m<=“z“Or m>=“A“And m<=“Z“Then c=c+1 Else If c>max Then max=c t=i-1 End If c=0 End If If i=n Then If c>max Then max=c t=i End If End If Next i Text2.Text=Mid(s, ②,max) End Sub (1)程序中①處填入的代碼是: