โ Back to Arrays
Question 302
Count Odd Numbers in Array
Count Odd Numbers in Array
The array{3, 8, 5, 12, 7, 4, 9}is given. Count how many elements are odd and print the count: 4 The odd elements are3,5,7, and9. Print the number only, with no newline.
Expected Output:
4
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.