[填空題] 以下程序的功能是,產(chǎn)生10個(gè)0~1000的隨機(jī)整數(shù),放入數(shù)組Arr中,然后輸出其中的最大值。請(qǐng)?zhí)羁铡? Option Base 1 Private
2021-07-20
[填空題] 以下程序的功能是,產(chǎn)生10個(gè)0~1000的隨機(jī)整數(shù),放入數(shù)組Arr中,然后輸出其中的最大值。請(qǐng)?zhí)羁铡?/p>
Option Base 1
Private Sub Form_Click()
Dim Arr(10)As Integer
Dim Max As Integer
Randomize
For i = 1 To 10
Arr(i)= Int(Rnd * 1000)
Next i
Max = (14)
For i = 2 To 10
If (15) Then
Max = Arr(i)
End If
Next i
Print Max
End Sub
正確答案:Arr(1)
詞條內(nèi)容僅供參考,如果您需要解決具體問(wèn)題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢(xún)相關(guān)領(lǐng)域?qū)I(yè)人士。