作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试求 400 万以内斐波那契偶数的总和。我找到了数字,但无法将它们相加...在 if(n % 2 ==0) 循环中
8
34
144
610
2584
10946
46368
196418
832040
3524578
<小时/>
public static void number2()
{
int number = 40;
int a, b, c;
int numLim = 0;
a = 1;
b = 2;
while(numLim < 4000000)
{
c = a + b;
a = b;
b = c;
numLim = b;
if(numLim > 4000000)
{
break;
}
int sum = 0;
if(numLim % 2 == 0)
{
System.out.println(numLim);
sum = sum + numLim;
System.out.println("sum :" +sum);
}
}
}
最佳答案
您必须在 while
循环之外定义 sum
,否则每次迭代都会变成 0
。
int sum = 0;
...
while ...
记住每次迭代时不要将 sum
设置为 0。
关于java - 试图找到斐波那契数列的总和为 400 万,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20938358/
我是一名优秀的程序员,十分优秀!