CJCoding With Joseph

Average of an Integer Array

An int array is given. Compute the integer average of its elements (the sum divided by the count, using integer division) and print it.

For the array {10, 20, 30, 40} the program prints:
25

Expected Output:

25
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.