题目内容:
在n个运动员中选出任意r个人参加比赛,有很多种不同的选法,选法的个数可以用公式计算。下图窗体中3个文本框的名称依次是Textl、Text2、Text3。程序运行时在Textl、Text2中分(n—r)r别输入n和r的值,单击Command1按钮即可求出选法的个数,并显示在Text3文本框中(见下图)。请填空。Private Sub Command1_Click()
Dim r As Integer,n As Integer
n=Textl
r=-Text2
Text3=fun(n)/fun(【l】)/fun(r)
End Sub
Function fun(n As Integer)as long
DimtAsLong
【2】
For k=l To n
t=t*k
Next
fun=t
End Function
参考答案:
答案解析: