gpt4 book ai didi

Java for 循环(数字总和+总计)

转载 作者:行者123 更新时间:2023-12-02 05:18:15 25 4
gpt4 key购买 nike

我在这里有点迷路了。我有一个 for 循环,它增加一个值,如下所示:

int nu01 = 10000;
int level = 0;
int increase = 35000;

for (int i = 0; i < 100; i++) {
nu01 = nu01 + increase;
level++;
System.out.println(nu01);

if (level > 50) {
increase = 45000;
}

这工作正常,但我需要循环中所有数字的总和作为总数:

loop: 10,20,30,40,50,70,90,120....total:10,30,60,100,150,220,310,430...

I tried:

int total;
total=nu01 + nu01; //or nu01 + nu01 + increase;

但我得到了奇怪的数字。所以我需要循环来增加数字以及所有这些数字的总和。我希望这是有道理的。谢谢。

最佳答案

你想做的是类似的事情

int total = 0;
...
//beginning of your for loop
total = total + nu01; // alternatively you could do total += nu01;

关于Java for 循环(数字总和+总计),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26720071/

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