| about | help | done | prefs | create account |
Array-2 > centeredAverage
prev | next | chance
| Return the "centered" average of an array of ints, which we'll say is the mean average of the values, except not counting the largest and smallest values in the array. Use int division to produce the final average. You may assume that the array is length 3 or more.
centeredAverage({1, 2, 3, 4, 100}) → 3 centeredAverage({1, 1, 5, 5, 10, 8, 7}) → 5 centeredAverage({-10, -4, -2, -4, -2, 0}) → -3 ...Save, Compile, Run See Also: Example Code Java help: If Boolean Logic | Strings | While and For Loops | Arrays and Loops |
Forget It! -- delete my code for this problem 209.0
Copyright Nick Parlante 2006-09 - privacy