Example 60: Frequency of Positive, Negative, and Zero
Learn how to calculate the frequency of numbers.
We'll cover the following...
Problem
Write a program to find the number of positives, negatives, and zeros in the input array.
Store these values in the result array passed as a parameter such that the number of positive values should be stored at index 0, the number of negative values at 1, and zeroes at 2.
Example
Input | Output (Positive, Negative, Zeroes) |
---|---|
1, 2, -3, 0, 4 | 3, 1, 1 |
4, 0, 2, -1, -3 | 2, 2, 1 |
0, 0, 2, 0, -3 | 1, 1, 3 |
Try it yourself
Try to solve this question on your own in the code widget below. If you get stuck, you can always refer to the solution provided.
Access this course and 1400+ top-rated courses and projects.