You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A quick implementation of the Sieve of Eratosthenes algorithm.
The idea of this is to really fast generate some prime numbers and print them to the screen.
All valid primes are stored in a c++ vector. So you can manipulate the data easy.
About
A quick implementation of the Sieve of Eratosthenes algorithm.