单项选择题

运行以下程序时,由键盘为变量load输入的数据为20,输出结果为______。
Private Function Wei(load As Integer),Money As Single
If load<20 Then
Money=load/2
Else
Money=20+load
End if
Wei=Money
End Function
Private Sub Form _Click()
Dim load As Integer,fee As Single
load=InputBox(“请输入一个数:”)
fee=Wei(loaD)
Print fee
End Sub

A.10
B.20
C.30
D.40