โ Back to Arrays
Question 420
Count Elements Divisible by 3
Count Elements Divisible by 3
An arrayint nums[] = {3, 5, 9, 10, 12, 7, 6}is given. Count how many elements are evenly divisible by3(remainder0) 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.