C++ Program to find the Strong Number

Write a C++ Program to find the Strong Number with an example. Any number can be strong if the sum of the factorial of individual digits in that number equal to the actual number. For instance, factorial of the individual digits in 145  = 1! + 4! + 5! = 1 + 24 + 120 … Read more