Friday 28 July 2017

Write a program to print Factorial 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

No comments:

Post a Comment