题目内容:
下面过程的功能是:求一维数组中的最小值。请在空白处填入适当的内容,将程序补充完整。Function GetMin(s()As Integer)
Dim i As Integer,F1rst As Integer,last As Integer
F1rst=LBound(s)
last=UBound(s)
GetMin=s(F1rst)
For i=F1rst To last
If s(i)<GetMin Then
____
End If
Next i
End Function
参考答案:
答案解析: