检查int是否是主要的Java

时间:2017-08-06 10:13:14

标签: java loops for-loop primes

抱歉“修复我的代码”帖子

编辑:与for循环的语法相关的更多与素数相关,现在也已解决。

我的任务是从控制台获取一个int并打印(在单独的行上)从1到n的所有素数。 我的方法从n开始,检查它是否为素数,然后将n递减1并循环直到n = 2。 为了检查一个数字是否为素数,我运行一个循环,检查剩余的潜水数量x等于零,x从2开始并在root(n)处停止。 现在这一切都在理论上有效,并且阅读我的代码我看不出它出了什么问题。

public class Prime {
public static boolean isPrime(int n) {
    boolean result = true;
    for (int x = 2; x>=sqrt(n); x++) {
        if ((n % x) == 0) {
            result = false;
            break;
        } else {
            x++;
        }
    }
    return result;
}

public static void main(String[] args) {
    Scanner intIn = new Scanner(System.in);
    int i = intIn.nextInt();
    while (i>=2) {
        if (isPrime(i)) {
            System.out.println(i);
            i--;
        } else {
            i--;
        }
    }
  }
}

例如,输入10将返回10(连同9,8,7,6,5,3),即使isPrime()检查10%2 == 0,然后将result设置为假。 我在这里想念的是什么?

我再次为烦人(略微重复)的问题道歉。

4 个答案:

答案 0 :(得分:3)

for循环中的条件是继续循环的条件,而不是停止的条件。您需要将>=替换为<=

for (int x = 2; x<=sqrt(n); x++) {
    // Here -----^

答案 1 :(得分:2)

您正在递增x两次,并且循环的条件应为x<=sqrt(n)

for (int x = 2; x>=sqrt(n); x++) { // here
    if ((n % x) == 0) {
        result = false;
        break;
    } else {
        x++; // and here
    }
}

正确的逻辑应该是:

public static boolean isPrime(int n) {
    for (int x = 2; x<=sqrt(n); x++) {
        if ((n % x) == 0) {
            return false;
        }
    }
    return true;
}

答案 2 :(得分:1)

在循环中x必须小于或等于 因此,将(int x = 2; x&gt; = sqrt(n); x ++)的表达式更改为 for(int x = 2; x&lt; = sqrt(n); x ++)

答案 3 :(得分:1)

以这种方式尝试,它更加清晰简洁。

public static boolean isPrime(int candidate) {
        int candidateRoot = (int) Math.sqrt((double) candidate);
        return IntStream.rangeClosed(2, candidateRoot)
                .noneMatch(i -> candidate % i == 0); // return true if the candidate
                                                     // isn't divisible for any of the
                                                     // numbers in the stream
    }

    public static void main(String[] args) {
        Scanner intIn = new Scanner(System.in);
        int i = intIn.nextInt();

        List<Integer> primeList = IntStream.rangeClosed(2, i)
                .filter(candidate -> isPrime(candidate))
                .boxed()
                .collect(toList());
        System.out.println(primeList);

        // Another way
        Map<Boolean, List<Integer>> primeAndNotPrimeMap = IntStream.rangeClosed(2, i)
                .boxed()
                .collect(partitioningBy(candidate -> isPrime(candidate)));
        System.out.println(primeAndNotPrimeMap);


    }