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
出自:国家开放大学Visual Basic6.0程序设计