Average Grade
Collapse Content
Show Content
You're analyzing test grades again, and would like to know the exact mean (average) grade for a given list. For example, given {70,80,90,100}
, print 85.0
.
Challenge
Given an integer list of grades, print the exact mean of the list, including any decimal place. If the mean is an integer, print ".0" at the end.
Please sign in or sign up to submit answers.
Alternatively, you can try out Learneroo before signing up.
Comments
thales
Jul 18, 12:44 PMa solution:
my code