在VB中,下列程序运行后,变量v的值为( )x=15 If x>=10 Then v=3*x Else v=4*x

问题描述:

在VB中,下列程序运行后,变量v的值为( )
x=15
If x>=10
Then
v=3*x
Else v=4*x

..
45