โ Back to Arrays
Question 388
Count Elements Less Than Five
Count Elements Less Than Five
The array{2, 7, 4, 9, 1, 5, 3}is given. Count how many elements are strictly less than5and print the count: 4 Note that5itself is not less than5. The matching elements are2,4,1, and3.
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.