作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的指示是编写一个程序,该程序不仅仅使用 MAIN 方法来查找斐波那契素数。但是我陷入了一个循环。我发现 2 和 3 是 Fibonacci Prime,但从那以后我一直停留在这个位置。
while ((b1 < f) && primeflag)
{
if (f % b1 == 0)
primeflag= false;
这是完整的源代码。
public class stadfcs {
public static void main(String[] args) {
System.out.println("Fibonacci Number and Prime Number Finder from 2 - 100000");
int fb1 = 1; int fb2 = 1; int f =fb1 + fb2;
while (f <= 100000)
{
if (isPrime(f)) {
System.out.println(f + " is a prime number and a Fibonacci Number!");
fb1 = fb2;
fb2 = f;
f = fb1 + fb2;
}
}
}
private static boolean isPrime(int f) {
boolean primeflag = true;
if ((f%2==0) && (f>3))
primeflag = false;
int b1 = 3;
while ((b1 < f) && primeflag)
{
if (f % b1 == 0)
primeflag= false;
}
b1+=2;
return primeflag;
}
private static int fib(int fb1, int fb2) {
return(fb1 + fb2);
}
}
最佳答案
看看这个循环:
while (f <= 100000)
{
if (isPrime(f)) {
System.out.println(f + " is a prime number and a Fibonacci Number!");
fb1 = fb2;
fb2 = f;
f = fb1 + fb2;
}
}
请注意,如果 f
不是素数,则 f
的值在循环内不会改变。这意味着您将陷入无限循环!
你是想做这样的事情吗?
while (f <= 100000)
{
if (isPrime(f)) {
System.out.println(f + " is a prime number and a Fibonacci Number!");
}
fb1 = fb2;
fb2 = f;
f = fb1 + fb2;
}
关于Java - 斐波那契素数卡住环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33442221/
我是一名优秀的程序员,十分优秀!