CJCoding With Joseph

Count Even Numbers in Array (for)

The array nums contains {4, 7, 10, 3, 8, 5}. Use a loop to count how many elements are even, then print:

Even count: 3

A number is even when x % 2 == 0.

Expected Output:

Even count: 3
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.