Answer:
Explanation:
Let's use Python for this. We will start prompting the user for input number, until it get 0, count only if it's positive:
input_number = Input("Please input an integer")
positive_count = 0
while input_number != 0:
  if input_number > 0:
     positive_count += 1
  input_number = Input("Please input an integer")
print(positive_count)
 Â