下列程序段运行后,变量Value的值是()
x = 20
If x >= 10 Then
Value = 5 * x
Else
Value = 4 * x
End If
A.100
B.80
C.90
D.70