Problem:
Question- Write a program that takes three series of numbers from the user and finds the minimum of each series.
Each series is terminated by the sentinel of -1. The number in each series are zero or positive integers. If the user enters a negative integer, it should be ignored. This is a sample output.
** Starting Series 1 **
Enter the integers: 12 13 5 -5 2 12 -1
The minimum number is: 2
** Starting Series 2 **
Enter the integers: 13 6 4 5 32 4 12 -1
The minimum number is: 4
** Starting Series 3 **
Enter the integers: 10 8 2 1 9 0 1 22 -1
The minimum number is: 0
Please show code with comments so I can follow what you are doing.