设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Integer For i=1 To 3 For j=1 To 3 a(i,j)=i*j+i Next j Next i Sum=0 For i=1 To 3 Sum=Sum+a(i,4-i) Next i Print Sum End Sub 运行程序,单击命令按钮,输出结果是______。A.20B.7C.16D.17

题目

设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Integer For i=1 To 3 For j=1 To 3 a(i,j)=i*j+i Next j Next i Sum=0 For i=1 To 3 Sum=Sum+a(i,4-i) Next i Print Sum End Sub 运行程序,单击命令按钮,输出结果是______。

A.20

B.7

C.16

D.17


相似考题
更多“设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Int ”相关问题
  • 第1题:

    设有命令按钮Command1的单击事件过程,代码如下,请填空。

    Private Sub Command1_Click()

    Dim a(30) As Integer

    For i=1 To 30

    a(i) =i

    Next

    For Each arrItem______a

    If arrItem Mod 7=0 Then Print arrItem;

    If arrItem>90 Then Exit For

    Next

    End Sub


    正确答案:In
    In 解析:题考查了For Each…Next语句。与For…Next类似,但For Each…Next专门用于数组或对象“集合”,其一般格式为:
    For Each 成员 In 数组
    循环体
    [Exit For]
    Next[成员]

  • 第2题:

    设有一个命令按钮Command1的事件过程以及一个函数过程。程序如下: Private Sub Command1 Click( ) Static x A S Integer x=f(x+5) Cls Print X End Sub Private Function f(x As Integer)As Integer f=x+x End Function 连续单击命令按钮3次,第3次单击命令按钮后,窗体显示的计算结果是( )。

    A.10

    B.30

    C.60

    D.70


    正确答案:D
    D。【解析】本题考查静态变量,静态变量能将执行后的值储存到变量中。所以当第一次单击按钮时,x=5,x=f(x+5)=5+5=10,所以x=10,第二次单击按钮时,x=f(x+5)=15+15=30,此时x=30,当第三次单击按钮时,x=f(x+5)=35+35=70,所以答案为D。

  • 第3题:

    在窗体中有一个名为Command1的命令按钮,Click事件的代码如下: Private Sub Command1_Click() f = 0 For n = 1 To 10 Step 2 f = f + n Next n Me!Lb1.Caption = f End Sub 单击命令按钮后,标签显示的结果是()。


    C 弹出的是m(2+m(6)),m(6)=11—6=5,因此弹出的是m(2+5)=m(7)=11-7=4。

  • 第4题:

    在窗体中有一个名为(Command1的命令按钮,Click事件的代码如下:

    单击命令按钮后,标签显示的结果是( )。


    正确答案:25
    25

  • 第5题:

    (6)在窗体上有1个名称为Command 1的命令按钮,并有如下事件过程和函数过程:

    Private Sub Command 1_Click()

    Dim p As Integer

    p=m(1)+m(2)+m(3)

    Print p

    End Sub

    Private Function m(n As Integer) As Integer

    Static s As Integer

    For k=1 To n

    s=s+1

    Next

    m=s

    End Function

    运行程序,单击命令按钮Command 1的输出结果为【6】。


    正确答案:
    (6)10