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.

Respuesta :

Answer:

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)