Write a program that reads a set of integers. The program then should find the number of positive, negative, and zero integers.
Enter the number of elements in the list: 5
Enter the 5 elements: 1 0 11 0 -3
Number of positives: 2
Number of negatives: 1
Number of Zeros: 2
Consider the following programming task
1. Read a set of 40 positive and negative numbers entered from a keyboard and find the seperate total of the positive and negative numbers
2.how can i show a modular design of the above statement
3.how can i write an algorithm for the task and also a c++ program