Factorial of a number in PHP
Advertisements
Factorial of a number in PHP
In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. But here we write program; how to print factorial of any number in php.
Example of Factorial
5!= 5 * 4 * 3 * 2 * 1 = 120
Factorial of a number in PHP
<?php
$num = 4;
$factorial = 1;
for ($x=$num; $x>=1; $x--)
{
$factorial = $factorial * $x;
}
echo "Factorial of $num is $factorial";
?>
Output
Factorial of 4 is 24
Google Advertisment
