โ Back to Arrays
Question 105
Sum Even Numbers Only
Sum Even Numbers Only
An array called nums has already been created for you with the values {10, 15, 20, 25, 30}. A variable called sum has been initialized to 0.
Your task is to use the for loop to add up only the even numbers in the array. Skip the odd numbers.
This combines two things you've already practiced:
1. Checking if a number is even: nums[i] % 2 == 0
2. Adding to a running total: sum += nums[i]
The even numbers in this array are 10, 20, and 30. Their sum is 60.
Print the result in this exact format:
Even sum: 60Expected Output:
Even sum: 60
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.