Whats up guys?
This program has given me nightmares lol.
When input is a positive integer, the program should reduce it to prime factors. The integer is less than 900. The program should Output the prime factors as a series that when multiplied together, will return the original integer.
If Input:
660
Output:
660 = 2.2.3.5.11
The code that i have tried to create is not finished and its hard coded so does anyone have ideas on how to write a program that would output the above result.