โ Back to Arrays
Question 383
Count Elements Divisible by Three
Count Elements Divisible by Three
The array{9, 4, 3, 7, 12, 5, 18}is given. Count how many elements are evenly divisible by3and print the count: 4 An element is divisible by3whenarr[i] % 3 == 0. The matching elements are9,3,12, and18.
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.