|
Visual Basic (VB and VBA) |
|
Copyright 1999-2001 Christopher Greaves. All rights reserved. Home Page and email to [email protected] |
| If in doubt, record a macro and inspect the entrails! |
Please read the DISCLAIMER.
Here is an INDEX to all the procedures.
You will probably need one copy of my GLOBAL DECLARATIONS.
Public Function lngFactorial(lngNum As Long) As Long
' Procedure : lngFactorial
' Description: Returns the factorial of the given long.
' Also useful as a simple example of recursion.
' Copyright: Chris Greaves Inc.
' Inputs: A possibly empty array of strings.
' Returns: The input array, sptted in sequence; optionally case-sensitive.
' Assumes: Nothing
' Side Effects: None.
' Tested: By the calls shown below.
If lngNum = 0 Or lngNum = 1 Then
lngFactorial = 1 'By def of factorial
Else
lngFactorial = lngNum * lngFactorial(lngNum - 1)
End If
'Sub TESTlngFactorial()
' MsgBox (lngFactorial(5))
'End Sub
End Function
| We all knew nothing when we started … |
|
Home Page and Contact Information Send email to [email protected]. This page was last updated Thursday, November 15, 2001 |