Ask Question
12 January, 18:45

Given an array temps of doubles, containing temperature data, compute the average temperature. Store the average in a variable called avgTemp. Besides temps and avgTemp, you may use only two other variables - - an int variable k and a double variable named total, which have been declared.

+4
Answers (1)
  1. 12 January, 21:48
    0
    Step-by-step explanation:

    We can code this in python:

    First, calculate the total temperature by iterating through temps by k

    for k in temps:

    total + = k

    Then we can calculate the average by dividing the total by the number of items in the temps array, or the length of array

    avgTemp = total / len (temps)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Given an array temps of doubles, containing temperature data, compute the average temperature. Store the average in a variable called ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers