题型:单选题 题类:模拟题 难易度:困难
浙江省2019年信息技术选考模拟试卷四
'顺序查找代码,查找次数用变量p表示
For i = 1 To 10
If a(i) = Key Then
p = i
End If
Next i
'二分查找代码,查找次数用变量q表示
i=1 :j=10 :find=Fasle
Do While i<=j And find=fasle
x =(i+j)\2
q = q+1
If a(x)=Key Then find=True
If a(x)>Key Then j=x-1
If a(x)<Key Then i=x+1
Loop
若变量key的值为13,程序运行后,则变量p和q的值分别是( )
试题篮