gpt4 book ai didi

java - 查找两个数字之间的素数个数

转载 作者:行者123 更新时间:2023-12-01 11:20:13 24 4
gpt4 key购买 nike

    public static void main(String[] args) {
int a = 0;
System.out.println(System.currentTimeMillis());
for(int x = 2; x <=10000; x++) {
boolean hasDivisor = false;
for(int y = 2; y < x; y++) {
if(x % y == 0) {
hasDivisor = true;
}
}

if(!hasDivisor) {
System.out.println(a);
}

}
}

}

这就是我的代码,我想让每次有素数时 int a 就加一,但我不知道将 a++ 放在哪里。我需要添加更多代码吗?

最佳答案

试试这个代码...添加了break语句并相应地增加了a++。

    public static void main(String[] args) {
int a = 0;
System.out.println(System.currentTimeMillis());
for (int x = 2; x <= 10000; x++) {
boolean hasDivisor = false;
for (int y = 2; y < x; y++) {
if (x % y == 0) {
hasDivisor = true;
break;
}
}

if (!hasDivisor) {
a++;
}

}
System.out.println(a);
}

关于java - 查找两个数字之间的素数个数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31332337/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com