现有如下程序: Private Sub Command 1_Click() S=0 For i:1 To 5 s=S+f(5+i) Next Print S End SUb Public Function f(x As Integer)

admin2018-10-18  28

问题 现有如下程序:
Private Sub Command 1_Click()
S=0
For i:1 To 5
s=S+f(5+i)
Next
Print S
End SUb
Public Function f(x As Integer)
Ifx>=10 Then
t=x+1
Else
t=x+2
End If
f=t
End Function
运行程序,则窗体上显示的是

选项 A、38
B、49
C、61
D、70

答案B

解析 本题考查的考点是有关函数调用和If语句的。要注意在前4次循环中每次调用f函数时传递的参数分别为6、7、8、9,都是小于10的,最后一次循环传递参数10,所以最终结果应该为8+9+10+11+11=49。
转载请注明原文地址:https://jikaoti.com/ti/3Bm0FFFM
0

随机试题
最新回复(0)