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

 

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

Return the average of an array of numbers. The average should be an integer value; disregard all decimal numbers from the average before returning it. If there are no numbers, then return 0.


arrayAverage([1, 2]) → 1
arrayAverage([8, 0, 10]) → 6
arrayAverage([]) → 0

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

public int arrayAverage(int[] nums) { }

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