โ Back to Arrays
Question 308
Count Negative Numbers
Count Negative Numbers
The array{-3, 5, -1, 8, -7, 2, 0}is given. Count how many elements are strictly negative and print the count: 3 Note that0is not negative. The negative elements are-3,-1, and-7.
Expected Output:
3
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.