How to check if a number is strong number or not in PHP

1 Answer

0 votes
// Strong numbers are the numbers that the sum of factorial of its digits 
// is equal to the original number
 
// 145 is a strong number: 1 + 24 + 120 = 145
  
$n = 145;
$sum = 0;
 
$tmp = $n;
 
while ($n != 0)
{
    $reminder = $n % 10;
    $sum = $sum + factorial($reminder);
    $n = (int)($n / 10);
}
if ($sum == $tmp)
    echo $tmp . " is a strong number<br />";
else
    echo $tmp . " is not a strong number<br />";
    
                
function factorial($n)
{
    $fact = 1;
 
    for ($i = 2; $i <= $n; $i++)
        $fact = $fact * $i;
 
    return $fact;
}

/*
run:
 
145 is a strong number
  
*/

 



answered May 9, 2017 by avibootz

Related questions

1 answer 129 views
1 answer 183 views
1 answer 196 views
1 answer 1,516 views
1 answer 172 views
1 answer 515 views
1 answer 175 views
...