A-A+

单击命令按钮时 下列程序的执行结果为 Private Sub Command1_Click

2022-08-06 02:07:05 问答库 阅读 174 次

问题详情

单击命令按钮时,下列程序的执行结果为 Private Sub Command1_Click Dim x As Integer, y As Integer x=12:y=32 Call Proc(x,y. Print x; y End Sub Public Sub Proc(n As Integer, ByVal m As Integer. n=n Mod 10 m=m Mod 10 End Sub
A.1232
B.232
C.23
D.123 请帮忙给出正确答案和分析,谢谢!

参考答案

正确答案:B

考点:单击,按钮