John Smith
Resultados
1
preguntas formuladas por
John Smith
¿Tamiz segmentado de Eratóstenes?
6
respuestas
42
votos
34.2k
vistas
Es bastante fácil hacer un colador simple: for (int i=2; i<=N; i++){ if (sieve[i]==0){ cout << i << " is prime" << endl; for (int j = i; j<=N; j+=i){