• 2021-04-14
    设有以下函数过程:
    Function fact(n As Long)
    If n = 1 Then
    fact = 1
    Else
    fact = n * fact(n - 1)
    End If
    End Function
    在窗体上画一个命令按钮和两个文本框,然后编写如下事件过程:
    Private Sub Command1_Click()
    Dim n As Long, result As Long
    n = Val(Text1.Text)
    result = fact(n)
    Text2.Text = Str(result)
    End Sub
    程序运行时,如果在文本框 Text1 中输入数据 5 后,单击命令按钮 Command1 ,则在文本框 Text2 上输出的结果为________
  • 举一反三