寻找Raptor的最高和最低降雨量

时间:2017-10-20 17:48:31

标签: javascript arrays module raptor

更新版本。

我已经弄清了我之前的问题,但我仍然不确定如何做最后一部分。我不知道如何获取括号内的数字而不是获取存储在其中的值。该数组由12个数字组成,例如我正在寻找可能为20的最高值,并在第4个点输入。我只能弄清楚如何让它显示20,但我想显示4。它有用户输入,因此应显示的数字可能会有所不同,我不确定如何完成此操作 我只需要显示最高和最低值的数组编号。我不知道我是否使用了错误的数组。

The main is the first section which is calling the other functions

The getInput function and assigns the entered values to one of 12 numbers in the array

The calculateTotal function which just adds all the values up.

The calculateAverage function which takes all the numbers entered and finds the average

The findHigh function which figures out which number entered is the highest. I have another function almost identical to this but finding the lowest. These are the two that need to show the arrays number and not the value that is saved inside of it.

displayResults function page which will display the values.

1 个答案:

答案 0 :(得分:0)

所以你有几个问题,但很容易修复。这仅用于修复最高值的图像3。

1。)当您设置highestValue时,您说最高值等于[January,amountOfRain]。你需要说highestValue <- data[1,2]。这会将其指向amountOfRain

2。)您需要更改Call或变量highestValue的名称,因为它有冲突。

尝试一下,让我知道你得到了什么。