题目内容:
单击命令按钮执行以下程序,则输出结果为( )。Private Sub Command1_Click()
Dim X As Integer,Y As Integer
X=12:Y=32
Call Proc(x,Y)
Printx;Y
End Sub
Public Sub Proc(n As Integer,ByVal m As Integer)
n=nMod 10
ITI=mMod 10
End Sub A.12 32
B.2 32
C.2 3
D.12 3
参考答案:
答案解析: