Finding prime numbers with the Sieve of Eratosthenes (Originally: Is there a better way to prepare this array?)

前端 未结 13 1678
攒了一身酷
攒了一身酷 2020-12-02 23:38

Note: Version 2, below, uses the Sieve of Eratosthenes. There are several answers that helped with what I originally asked. I have chosen the Sieve of Era

13条回答
  •  悲&欢浪女
    2020-12-03 00:21

    public static void primes(int n) {
            boolean[] lista = new boolean[n+1];
            for (int i=2;i

提交回复
热议问题