[填空题] 如果存在如下过程:Private Function FMaxla() As Integer)Dim First As Integer,Last As Integer,i As In

[填空题] 如果存在如下过程:Private Function FMaxla() As Integer)Dim First As Integer,Last As Integer,i As In,第1张

[填空题] 如果存在如下过程: Private Function FMaxla() As Integer) Dim First As Integer,Last As Integer,i As In

[填空题] 如果存在如下过程:

Private Function FMaxla() As Integer)

Dim First As Integer,Last As Integer,i As Integer

First=LBound(a)

Last=UBound(a)

Max=a(First)

For i=First To Last

If a(i)>Max Then Max=a(i)

Next i

FMax=Max

End Function

在窗体上添加一个命令按钮,然后编写如下事件过程:

Private Sub Command_Click()

ReDim m(1 To 4)As Integer

m(1)=20:m(2)=30:m(3)=50:m(4)=100

C=FMax(m)

Print C

End Sub

单击命令按钮,其输出结果为 (8)

正确答案:

100

参考解析:

首先需要分析Fmax函数的数学意义,不难发现是寻找数组中的最大值。Fmax函数调用参与运算的参数是数组m,那么输出值为m数组中最大值m(4)=100。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5625696.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存