试题

试题 试卷

logo

题型:综合题 题类:模拟题 难易度:困难

浙江省温州市2018届高三下学期信息技术3月适应性考试(二模)试卷

编写“单词查询”程序,实现如下功能:在文本框 Text1 中输入一段英文文本(以“.”为结束符),在文本框 Text2 输入一个英文字母,单击“获取单词”按钮 Command1,在列表框 List1 依次显示 Text1 中包含该英文字母的所有单词。程序运行界面如图所示。

(1)、程序运行时,文本框 Text1 显示为“请输入英文短句”,可在 Form_Load 事件过程中添加代码 (单选,填字母:A, Text1.Caption = "请输入英文短句" / B, Text1.Text="请输入英文短句" /  C, Text1.AddItem "请输入英文短句")。
(2)、实现上述功能的 VB 程序如下,请在划线处填入合适的代码。

Private Sub Command1_Click()

Dim s As String, tmp As String, c As String

Dim n As Integer, i As Integer

Dim flag As Boolean  

Dim cnt As Integer '存储符合条件的单词数

s = Text1.Text    

n = Len(s) 

flag = False    

List1.Clear 

For i = 1 To n 

c = Mid(s, i, 1)

If c >= "a" And c <= "z" Or c >= "A" And c <= "Z" Then

If c = Text2.Text Then flag = True: cnt = cnt + 1

Else

If flag Then List1.AddItem  tmp

tmp = ""

End If

Next i

If cnt = 0 Then

List1.AddItem "找不到符合条件的单词."

End If

End Sub

(3)、若文本框 Text2 中输入“M”,单击“获取单词”按钮后,列表框 List1 中显示的单词个数是
举一反三
返回首页

试题篮