Question: Language: C++ Topic: Flow control (II)Loop A number p is a prime number if p can be divided by 1 and p, but not any
Language: C++
Topic: Flow control (II)Loop

A number p is a prime number if p can be divided by 1 and p, but not any number in between 1 and p. Prime factorization of a number N is to find a list of prime numbers that multiplying them together will produce the number N. Write a program factor.cpp to take a positive input integer N and print its prime factorization. Expected Outcomes: Example 1 Enter the input positive number: 864 The prime factorization of 864 is: 2 2 2 2 2 3 3 3 Example 2 Enter the input positive number: 31 The prime factorization of 31 is: 31 Example 3 Enter the input positive number: 1 The prime factorization of 1 is: 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
