Write a method called showTwos that shows the factors of 2 in a given integer. For example, consider the following calls:
showTwos(7);showTwos(18);showTwos(68);showTwos(120);
These calls should produce the following output:
7 = 718 = 2 * 968 = 2 * 2 * 17120 = 2 * 2 * 2 * 15
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.