gpt4 book ai didi

java - 在循环内分配数组变量

转载 作者:行者123 更新时间:2023-11-29 05:26:36 25 4
gpt4 key购买 nike

编程新手,但试图在我的 for 循环中分配给我的双变量。基本上我需要使用 Math.abs 和 Math.sin,这有点让我失望。任何帮助表示赞赏。如果我需要提供更多信息,请告诉我。

double[] xValues = new double[arrayAmount];
double[] yValues = new double[arrayAmount];

xValues[0] = minimumValue;

for (int index = 0; index==arrayAmount; index++)
{

yValues = 20.0 * Math.abs((Math.sin(xValues))); // java saying this is wrong

}

最佳答案

你想要这样的东西吗?

for (int index = 0; index==arrayAmount; index++)
{
yValues[index] = 20.0 * Math.abs((Math.sin(xValues[index])));
}

请注意,您正在从 xValues 的特定索引获取值并保存在 yValues 的特定索引处。

另请注意,您的 xValues 只有 1 个元素。因此,如果您在代码中详细说明值或问题,我们可以为您提供更多帮助。

祝你好运!

关于java - 在循环内分配数组变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22470791/

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