CJCoding With Joseph

Average of Array Elements (for-each)

The array nums contains {10, 20, 30, 40}. Use a for-each loop to sum the elements, then print their average as a double:

Average: 25.0

Divide the sum by nums.length, casting to double so the decimal is kept.

Expected Output:

Average: 25.0
Topics:
Loops
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.