php
$n = 12; // Number
$i = 1;
$f = 1;
while($i<$n){
$i = $i + 1;
$f = $f * $i;
}
echo $f; // Factorial
php

Tagged with:  
Share →

Leave a Reply