188k views
3 votes
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.

User Tim Murphy
by
4.8k points

1 Answer

5 votes

Answer:

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)

User Joelion
by
5.1k points