CJCoding With Joseph

Count Elements Divisible by Three

The array {9, 4, 3, 7, 12, 5, 18} is given. Count how many elements are evenly divisible by 3 and print the count:

4

An element is divisible by 3 when arr[i] % 3 == 0. The matching elements are 9, 3, 12, and 18.

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.