Question: Write a program that prompts the user to enter a positive integer and displays all its smallest factors in decreasing order. For example, if the
Write a program that prompts the user to enter a positive integer and displays all its smallest factors in decreasing order. For example, if the integer is 120, the smallest factors are displayed as 5, 3, 2, 2, 2. Use the StackOfIntegers class to store the factors (e.g., 2, 2, 2, 3, 5) and retrieve and display them in reverse order.
Step by Step Solution
3.42 Rating (152 Votes )
There are 3 Steps involved in it
Output Enter an integer 120 The prime factors for the given number 120 is 5 3 2 2 2 Pro... View full answer
Get step-by-step solutions from verified subject matter experts
