CJCoding With Joseph

Count Elements Divisible by Three

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

4

The elements divisible by 3 are 3, 9, 12, and 6.

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.