Write a while loop to read positive integers from input until a non-positive integer is read. For each positive integer read before the non-positive integer, add the positive integer to vector intVect. Ex: If the input is
7516−100
, then the output is: 7 5 1 6 Note: Positive integers are greater than 0.