Skip to content

Commit

Permalink
Find factorial of number in PHP
Browse files Browse the repository at this point in the history
  • Loading branch information
ariframadhan01 authored Oct 3, 2021
1 parent 3b755ff commit dd39db5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ariframadhanPHP
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php
$num = 4;
$factorial = 1;
for ($x=$num; $x>=1; $x--)
{
$factorial = $factorial * $x;
}
echo "Factorial of $num is $factorial";
?>

0 comments on commit dd39db5

Please sign in to comment.