โ Back to Arrays
Question 386
Count Elements Equal to the First
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 elementarr[0], counting the first element itself, and print the count: 4 The first element is5, and it appears4times 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.