有如下一个Sub过程: Sub mlt (ParamArray numbers()) n=1 For Each x In numbers

admin2010-03-30  27

问题 有如下一个Sub过程:    Sub mlt (ParamArray numbers())                   n=1                   For Each x In numbers                        n=n * x                   Next x                   Print n    End Sub在一个事件过程中如下调用该Sub过程:    Private Sub Coinmand1_Click()                Dim a As Integer                Dim b As Integer                Dim c As Integer                Dim d As Integer                a=1                b=2                c=3                d=4              mlt a,b,c,d    End  Sub    则运行该程序,结果为______。  

选项 A、12
B、24
C、36
D、48

答案2

解析
转载请注明原文地址:https://jikaoti.com/ti/wFq0FFFM
0

最新回复(0)