单项选择题有如下Sub过程: Sub Sun(x As Single, y As Single) t=x x=t y y=t Mod y End Sub 在窗体上的命令按钮Command1中,编写如下事件过程,执行该事件过程调用Sun过程,结果为( )。 Private Sub Command1_Click() Dim a As Single Dim b As Single a=5 b=4 Sun a, b Print a; b End Sub
单项选择题声明一个变量为局部变量应该用( )。