首页 /编程语言和算法/VB6/ASP
 VB6 递归运算阶乘
2023年4月18日 18:36

新建From1(窗体),新建Command1(按钮CommandButton),代码:

Function Factorial(ByVal N As Double) As Double
    If N <= 1 Then
        Factorial = 1
    Else
        Factorial = Factorial(N - 1) * N
    End If
End Function

Private Sub Command1_Click()
    Dim N As Double
    N = Val(Me.Text1.Text)
    MsgBox Str(N) + "!=" + Str(Factorial(N))
End Sub


 
全部回复(0)
首页 | 电脑版 |