โ Back to Arrays
Question 311
Count Elements Divisible by Three
Count Elements Divisible by Three
The array{3, 7, 9, 10, 12, 5, 6}is given. Count how many elements are evenly divisible by3and print the count: 4 The elements divisible by3are3,9,12, and6.
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.