在窗体上画一个命令按钮,然后编写如下程序: Sub inc(a As Integer) Private Sub Command1 Click() Static x As Integerinc 2:inc 3:inc 4 x=x+a Print x;End

admin2020-01-02  24

问题 在窗体上画一个命令按钮,然后编写如下程序:
Sub inc(a As Integer)  Private Sub Command1 Click()
Static x As Integerinc 2:inc 3:inc 4
x=x+a Print x;End Sub
End Sub
程序运行后,第一次单击命令按钮时的输出结果为

选项 A、2 3 4
B、2 5 9
C、11,14 18
D、4 9 16

答案B

解析 static语句在过程级别中使用,用于声明变量并分配存储空间,在整个代码运行期间都能保留使用Static语句声明的变量的值。本题的inc过程中的x是一个静态变量,在三次调用过程中变量的值会保留,分别为2、2+3、5+4。
转载请注明原文地址:https://kaotiyun.com/show/whTp777K
0

相关试题推荐
最新回复(0)