Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 682 Bytes

File metadata and controls

16 lines (11 loc) · 682 Bytes

Prime Testing App

A playground app with which to try out some C++ development.

TODO

  1. Add recursion to list prime factors only.
  2. Add functionality to enter 2 numbers and find primes between -- DONE, sort of.
  3. Add a function to count the number of prime factors
  4. Consider some GUI options.
  5. Sort input numbers by 'primality', i.e. number of prime factors from 0 (most prime) to max (least prime).
  6. 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.
  7. Add twin-primes finder.

Also: Need to merge with C++ multi-file project template to expand functionality. -- DONE.