[单项选择题] 有下列Sub过程: Sub Sun(x As Single,y As Single)t=xx=t/yy=t Mody End Sub 在窗体上的命令按钮Command1中,编写下
17 查阅
[单项选择题] 有下列Sub过程:
Sub Sun(x As Single,y As Single)
t=x
x=t/y
y=t Mody
End Sub
在窗体上的命令按钮Command1中,编写下列事件过程,执行该事件过程调用Sun过程,结果是( )。
Private Sub Conunandl Cliek()
Dim a As Single
Dim b As Single
a=5
b=4
Sun a,b
Print a;b
End Sub
A.1.25 1
B.5 4
C.4 5
D.1 1.25
参考答案: