Write a program using a stack to input a number and display it as a product of its prime factors in the descending order. E.g., if the number input is 252, then the output should be 7 x 3 x 3 x 2 x 2.
(The smallest factor of any number is guaranteed to be a prime)
Comments
Leave a comment