โ Back to Loops
Question 291
Average of Array Elements (for-each)
Average of Array Elements (for-each)
The arraynumscontains{10, 20, 30, 40}. Use a for-each loop to sum the elements, then print their average as adouble: Average: 25.0 Divide the sum bynums.length, casting todoubleso 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.