Skip to main content

Posts

Showing posts with the label Factorial Number using Recursion in ASP.Net C#

Factorial Number using Recursion in ASP.Net C#

Hello everyone, I am going to share the code sample for factorial number by using recursion. The factorial number formula. i.e. L(n) = n*(n-1) The example in detail as given below.  public class factorial_Number   {         /// <summary>         /// FACTORIAL OF A NUMBER USING RECURSION.         /// </summary>         public static int FactorialNumber( int number)         {             if (number == 0)             {                 return 1;             }          ...