下列程序的执行结果为 Private Sub Command1_Click()Dim x As Integer,Y As Integerx=12:y=20Call Value(x,y)Print x;y End Sub Private Sub Value(ByVal m As Integer,ByVal n As Integer)m=m*2:n=n-5Print m;n End Sub
单选题
下列程序的执行结果为 Private Sub Command1_Click()Dim x As Integer,Y As Integerx=12:y=20Call Value(x,y)Print x;y End Sub Private Sub Value(ByVal m As Integer,ByVal n As Integer)m=m*2:n=n-5Print m;n End Sub