2
如何可以填充從多個操作結果等的高次諧波總和的陣列:諧波= 1 + 1/2 + 1/3 +四分之一....... + 1/N 我的不完整的版本是這樣的:保存多個結果的陣列中的在Java
public static void main(String[] args) {
int x=1, harmonic=0, y=2;
int[] n;
n = new int[];
// for populating the array ?!?!?!
do {n = {x/y}}
y++;
while (y<=500);
//for the sum for loop will do...
for (int z=0; z<=n.length; z++){
harmonic += n[z];
}
System.out.println("Harmonic sum is: " + harmonic);
}
我在開始時並仍然l賺取基礎知識,這就是爲什麼我試圖用數組來做到這一點。我會研究你的解決方案。多謝 ! – dragos