Given an array temps of double, containing temperature data, and an int variable n that contains the number of elements in temps: Compute the average temperature and store it in a variable called avgTemp. Besides temps, n, and avgTemp, you may use only two other variables — an int variable k and a double variable total, which have been declared.
LANGUAGE: C++
CHALLENGE:
Given an array temps of double, containing temperature data, and an int variable n that contains the number of elements in temps:
Compute the average temperature and store it in a variable called avgTemp.
Besides temps, n, and avgTemp, you may use only two other variables — an int variable k and a double variable total, which have been declared.
SOLUTION:
The Bad News: The content you are trying to access is only available to members.
The Good News: You too can be a member, simply Click Here.
Already a member? Log In Here
Posted in C++, Learn To Code