How many set of numbers would you like to enter: 4
1. Enter number: 1
2. Enter number: 2
3. Enter number: -1
4. Enter number: 3
Start
a. Ask the user to enter how many sets of numbers to input
b. Read the user input
c. Initialize variables for positive count, negative count, total, and average
d. Set loop counter to 0
Loop while loop counter is less than user input
a. Increase loop counter by 1
b. Ask the user to enter a number
c. Read the user input
d. If the number is positive, increase positive count
e. If the number is negative, increase negative count
f. Add the number to the total
End Loop
a. Calculate the average by dividing the total by the number of sets
b. Display the number of positives, negatives, total, and average
End