填空题
有如下Sub过程:
Sub ind(a As Integer)
Static x As Integer
x= x + a
Print x:
End Sub
以下是调用它的事件过程,程序运行后,单击命令按纽Command1三次,输出结果为
【14】
。
Private Sub Command1_Click()
Ind 2
End Sub
1、
【正确答案】
1、6
【答案解析】
提交答案
关闭