I need an answer in C++, please
TITLE
PRIME FACTORIZATION USING AN ARRAY-BASED
STACK
INTRODUCTION
This project revisits one of the problems in Project 2, and it
will re-use a function within the solution developed there.
An integer is prime if it is divisible only by
itself and 1. Every integer can be written as a product of prime
numbers, unique except for their order, called its prime
factorization. For example,
1776 = 37 x 3 x 2 x 2...