CJCoding With Joseph

Count Elements Equal to the First

The array {5, 3, 5, 5, 2, 5} is given. Count how many elements are equal to the first element arr[0], counting the first element itself, and print the count:

4

The first element is 5, and it appears 4 times in total.

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.