A playground app with which to try out some C++ development.
- Add recursion to list prime factors only.
- Add functionality to enter 2 numbers and find primes between -- DONE, sort of.
- Add a function to count the number of prime factors
- Consider some GUI options.
- Sort input numbers by 'primality', i.e. number of prime factors from
0(most prime) tomax(least prime). - Is there something about 'flavours'? 21 has the flavours of 3 and 7. 121 has only the flavour 11. Maybe it's a count of unique prime factors.
- Add twin-primes finder.
Also: Need to merge with C++ multi-file project template to expand functionality. -- DONE.