id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tlsmith2@wsfcs.k12.nc.us > commonAlgAverageAge
prev  |  next  |  chance

An array contains the ages of all members of a football team. Return the average of all the ages. Note: The array may not be full of ages; once you encounter an age of zero, this signifies that this element and the remaining elements are not valid ages and should not be factored into the average age.


commonAlgAverageAge([20, 25, 27]) → 24.0
commonAlgAverageAge([30, 33]) → 31.5
commonAlgAverageAge([30, 33, 0, 0]) → 31.5

...Save, Compile, Run (ctrl-enter)

public double commonAlgAverageAge(int[] ages) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy