【单选题】单击命令按钮执行以下程序,则输出结果为( )。 Private Sub Command1_Click() Dim x As Integer, y As Integer x = 14: y = 48 Call Proc(x, y) Print x; y End Sub Public Sub Proc(n As Integer, ByVal m As Integer) n = n Mod 10 : m...
【简答题】单击命令按钮执行以下程序,输出结果为: 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 ...