CJCoding With Joseph

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 with System.out.println:

4

The odd elements are 3, 5, 7, and 9.

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.