题目内容:
下列程序的执行结果为( )。Private Sub Co mmand1_Click()
Di mp As Integer ,q As Integer
p =12:q =20 Call Value(p ,q)
Print p ;q
End Sub
Private Sub Value(ByVal m As Integer ,ByVal n AsInteger)
m=m*2:n =n -5
Print m;n
End Sub A.20 12
20 15
B.12 20
12 25
C.24 15
12 20
D.24 12
12 15
参考答案:
答案解析: