Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 answers

573 users

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 92 views
1 answer 89 views
1 answer 1,394 views
1 answer 69 views
1 answer 430 views
...