CJCoding With Joseph

Count Negative Numbers in an Array

The array {4, -2, 7, -8, -1, 3, 0} is given. Count how many elements are strictly negative (less than 0) and print the count:

3

Note that 0 is not negative. The negative elements are -2, -8, and -1.

Expected Output:

3
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.