โ Back to Arrays
Question 377
Count Odd Numbers in an Array
Count Odd Numbers in an Array
The array{3, 8, 5, 12, 7, 4, 9}is given. Count how many elements are odd and print the count withSystem.out.println: 4 The odd elements are3,5,7, and9.
Expected Output:
4
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.