โ Back to Methods
Question 372
Even Sum Method
Even Sum Method
Write a methodsumEvens(int n)that returns the sum of all even numbers from 1 throughn. Call it with10and print the result: 30 (2 + 4 + 6 + 8 + 10 = 30.) UseSystem.out.println.
Expected Output:
30
Topics:
Methods
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.