设有如下程序:
Sub f(x As Integer,ByVal y As Integer)
x=2*x
y=y+x
End Sub
Private Sub Command1_Click()
Dim a As Integer,b As Integer
a=6;b=35
Call f(a,b)
Print a,b
End Sub
程序运行后,单击命令按钮Command1,输出结果是 ______ 。
Sub f(x As Integer,ByVal y As Integer)
x=2*x
y=y+x
End Sub
Private Sub Command1_Click()
Dim a As Integer,b As Integer
a=6;b=35
Call f(a,b)
Print a,b
End Sub
程序运行后,单击命令按钮Command1,输出结果是 ______ 。
本题解析
1/13
