注意:此页面搜索的是所有试题
Private Sub Command1_Click()
    x = 0
    Do While x < 60
        x = (x + 2) * (x + 3)
        n = n + 1
    Loop
    Text1.Text = Str(n)
    Text2.Text = Str(x)
    Text3.Text = Val(Text1.Text) + Val(Text2.Text)
End Sub
程序运行后,单击命令按钮在文件框Text3中显示的结果是(   )。
A、72 B、74
C、7 D、16

参考答案