โ Back to Loops
Question 299
Count Even Numbers in Array (for)
Count Even Numbers in Array (for)
The arraynumscontains{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 whenx % 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.