CJCoding With Joseph
15per day

Count Above the Average

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

For { 10, 20, 30, 40, 50 } the average is 30 and 40, 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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.