注意:此页面搜索的是所有试题
Private Sub Command1_Click()
Static x As Integer
Static y As Integer
Cls
y = 1
y = y + 5
x = 5 + x
Print x, y
End Sub
程序运行后,单击命令按钮Command1三次后,窗体上显示的结果为( )。
A、15 16 B、15 6
C、15 15 D、5 6
Static x As Integer
Static y As Integer
Cls
y = 1
y = y + 5
x = 5 + x
Print x, y
End Sub
程序运行后,单击命令按钮Command1三次后,窗体上显示的结果为( )。
A、15 16 B、15 6
C、15 15 D、5 6
参考答案