Question: please help me solve in Java Worth S Points Programming Exercise 5.1 (Count positive and negative numbers and compute the average of numbers) Write a

please help me solve in Java
Worth S Points Programming Exercise 5.1 (Count positive and negative numbers and compute the average of numbers) Write a program that reads an unspecified number of integers, determines how many positive and negative values have been read, and computes the total and average of the input values not counting zeros Your program ends with the input 0 Ds play te average as a floating-point number SAMPLE RUN 1: Enter an integer, the input ends if it is e: 1 2 -13 The number of positives is 3 The number of negatives is 1 The total is 5.0 The average is 1.25 SAMPLE RUN 2: Enter an integer, the input ends if it is 8: 8 No numbers are entered except SAMPLE RUN 3: Enter an integer, the input ends if it is 0: 23 45 The number of positives is 4 The number of negatives is e The total is 14 The average is 3.5 SAMPLE RUN 4: Enter an integer, the input ends if it is 0:4 32-10 The number of positives is 2 The number of negatives is 2 The total ise The average is 8.0 Class Name: Exercise05 01
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
