[填空題] 設(shè)有如下程序: Private Sub Search(a()As Variant,ByVal key As Variant,index%) Di
2021-07-20
[填空題] 設(shè)有如下程序:
Private Sub Search(a()As Variant,ByVal key As Variant,index%)
Dim I%
For I=LBound(A) To UBound(A)
If key=a(I) Then
Exit Sub
End If
Next I
Index=-1
End Sub
Private Sub Form_Load()
show
Dim b() As Variant
Dim n As Integer
b=Array(1,3,5,6,9,11,13,15)
Call Search(b,11.n)
Print n
End Sub
程序運(yùn)行后,輸出結(jié)果是 (6) 。
正確答案:E
參考解析:用戶自定義函數(shù)的作用為尋找數(shù)組內(nèi)關(guān)鍵字的腳標(biāo),注意是腳標(biāo)是從0開始的,所以“11"出現(xiàn)的第6位的元素腳標(biāo)為5,index作為返回值回傳給n。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。