Home » PHP Factorial Program

PHP Factorial Program

by Online Tutorials Library

Factorial Program

The factorial of a number n is defined by the product of all the digits from 1 to n (including 1 and n).

For example,

Note:

  • It is denoted by n! and is calculated only for positive integers.
  • Factorial of 0 is always 1.

The simplest way to find the factorial of a number is by using a loop.

There are two ways to find factorial in PHP:

  • Using loop
  • Using recursive method

Logic:

  • Take a number.
  • Take the descending positive integers.
  • Multiply them.

Factorial in PHP

Factorial of 4 using for loop is shown below.

Example:

Output:

PHP Factorial programs 1


Factorial using Form in PHP

Below program shows a form through which you can calculate factorial of any number.

Example:

Output:

PHP Factorial programs 2


Factorial using Recursion in PHP

Factorial of 6 using recursion method is shown.

Example:

Output:

PHP Factorial programs 3

Next TopicArmstrong Number

You may also like