gpt4 book ai didi

java - 对数组元素的奇数索引求和

转载 作者:行者123 更新时间:2023-12-01 23:55:56 24 4
gpt4 key购买 nike

我有这个程序,它可以完成一大堆事情,但我遇到麻烦的部分是对数组列表中的奇数索引求和。

每隔 1、3、5、7 等,我需要求和并添加到一个变量中。该变量的数据类型为 BigFraction,并且 ArrayList - 知识仅采用 BigFractions

所以最初我有

 //Returns the combined probability (the odd indexes of the arraylist)
public BigFraction weight() {
BigFraction sum;
if (knowledge.indexOf(knowledge)%2 == 1)
sum+ = no idea what to put in here
return sum;
}
}

我真的不确定这是否是获取 Arraylist 索引的正确语法...我想你也可以使用 .add 或其他东西,但如果有人能阐明那就太棒了。

干杯,

模拟

最佳答案

试试这个:

// Returns the combined probability (the odd indexes of the arraylist)
public BigFraction weight() {
BigFraction sum;
for (int index = 1; index < knowledge.size(); index = index + 2) {
sum = sum.add(knowledge.get(index));
}

System.out.println("Sum is " + sum);

return sum;
}

关于java - 对数组元素的奇数索引求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15610204/

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