题型:单选题 题类:常考题 难易度:普通
浙江省温州市十校联合体2015-2016学年高二上学期信息技术期中联考试卷
Dim a(1 To 5) As Integer
Dim f As Boolean
a(1) = 23: a(2) = 12: a(3) = 56: a(4) = 34: a(5) = 10
i = 1: f = True
Do While i <= 5 And f = True
If a(i) = 56 Then f = False
i = i + 1
Loop
Label1.Caption = i
试题篮