在窗体上画一个名称为Command1的命令按钮,然后编写如下程序: Private Sub Command1_Click() Static x As Integer Static y As Integer Cls

admin2009-02-13  26

问题 在窗体上画一个名称为Command1的命令按钮,然后编写如下程序:    Private Sub Command1_Click()       Static x As Integer       Static y As Integer       Cls       y = 1       y = x+2       x = 4 + y       Print x,  y    End Sub    程序运行时,三次单击命令按钮Command1后,窗体上显示的结果为

选项 A、3  4
B、18  14
C、15  14
D、7  12

答案2

解析 变量x和y都定义为静态变量,当每次单击命令按钮计算过后都应该保留上次计算的值。x和y三次计算的过程为:6和2:12和8: 18和14。
转载请注明原文地址:https://jikaoti.com/ti/rvq0FFFM
0

最新回复(0)