(27) 单击命令按钮,下列程序的执行结果为
Private Sub Command1_Click()
Dim x As Integer, y As Integer
x=32: y=42
Call PCS(x, y)
Print x; y
End Sub
Public Sub PCS(Byval n As Integer, ByVal m As Integer)
n=n Mod 10+1
m=m Mod 10+1
End Sub
A) 32 42
B) 2 32
C) 2 3
D) 12 3
正确答案: A
上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] ... 下一页 >>