CJCoding With Joseph

Count Elements Above the Average

An int array is given. Compute its integer average, then count how many elements are strictly greater than that average, and print the count.

For the array {10, 20, 30, 40, 50} the average is 30, and 40 and 50 are above it, so the program prints:
2

Expected Output:

2
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.