CJCoding With Joseph

Count Elements Divisible by 3

An array int nums[] = {3, 5, 9, 10, 12, 7, 6} is given. Count how many elements are evenly divisible by 3 (remainder 0) and print the count:

4

Print only the number and a newline.

Expected Output:

4
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.