CJCoding With Joseph

Sum of Odd Numbers in an Array

The array {3, 8, 5, 12, 7, 4, 9} is given. Add together only the odd elements and print the total:

24

The odd elements are 3, 5, 7, and 9, and 3 + 5 + 7 + 9 = 24.

Expected Output:

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