gpt4 book ai didi

java - 递增多个嵌套 While 循环

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

我在增加 4 个嵌套 while 循环时遇到问题。假设您有一个 double 类型的数组,以及许多用于递增循环的整数。这是一个例子

 private static double[] approxOfU(double w, double x, double y, double z,
double u) {
double a = 0, b = 0, c = 0, d = 0;
final double[] powerArray = { -5.0, -4.0, -3.0, -2.0, -1, (-1.0 / 2.0),
(-1.0 / 3.0), (-1.0 / 4.0), 0, (1.0 / 4.0), (1.0 / 3.0),
(1.0 / 2.0), 1, 2, 3, 4, 5 };
double[] temp = new double[5];
double approx;
int i = 0, j = 0, k = 0, l = 0;

while (i < powerArray.length) {
a = powerArray[i];
while (j < powerArray.length) {
b = powerArray[j];
while (k < powerArray.length) {
c = powerArray[k];
while (l < powerArray.length) {
d = powerArray[l];
approx = Math.pow(w, a) * Math.pow(x, b)
* Math.pow(y, c) * Math.pow(z, d);
if (Math.abs(approx - u) / u <= 0.01) {
temp[0] = a;
temp[1] = b;
temp[2] = c;
temp[3] = d;
temp[4] = approx;

}
l++;

}
k++;
}
j++;
}
i++;
}

return temp;
}

我应该把 i++、j++、k++ 和 l++ 等增量放在哪里?该作业仅要求在项目的这一部分中使用 while 循环。我已经开始工作的项目的 for 循环部分。请让我知道你的想法。该代码不是作业的真正代码,但我想了解如何更新这些嵌套循环并能够从中获取正确数据的逻辑。当我使用下面的变量输出到屏幕时,我最终得到 0,所以有些东西不对。通常我将增量加 1(i++、j++、...等)放在循环大括号的末尾。在这种情况下,该方法不会产生良好的结果。请帮忙! :)

最佳答案

如果您没有对索引进行任何魔法,并且只需要循环中的数组元素(而不是索引),那么您可以使用增强的 for 循环:

double[] updateArray = new double[7];
/* fill your array */
for(double i : updateArray) {
for(double w : updateArray) {
for(double y : updateArray) {
for(double x : updateArray) {
// No incrementing or indices required :)
}
}
}
}

关于java - 递增多个嵌套 While 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25966263/

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