CJCoding With Joseph

Count Elements Less Than Five

The array {2, 7, 4, 9, 1, 5, 3} is given. Count how many elements are strictly less than 5 and print the count:

4

Note that 5 itself is not less than 5. The matching elements are 2, 4, 1, and 3.

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.