計算陣列元素的總和和平均值
要計算陣列中元素的總和和平均值,請使用簡單的數學運算。首先定義保存總和和平均值的變數。然後,迭代數組,透過新增每個元素來累積總和。最後,將總和除以數組中的元素數量來計算平均值。
考慮以下程式碼:
var sum = 0; var average = 0; var count = elmt.length; for (i = 0; i < count; i++) { sum += parseInt(elmt[i]); // Convert string elements to integers for numerical operations } average = sum / count; document.write("The sum of all the elements is: " + sum + " The average of all the elements is: " + average + "<br/>");
在此範例中:
這種方法可以讓你處理數組中的整數或浮點元素,並有效地獲得集體總和和平均值。
以上是如何計算數組中元素的總和和平均值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!