JAVA) I need to get 10 integer numbers from the user. Then I
need to find sum of odd numbers, sum of
even numbers, the lowest number of all
numbers, the highest number of all numbers, and
the average of all numbers( use double, with the
two digit decimal)
process;
loopCount = 1
While LoopCount <= 10
Read number from the keyboard
If odd, add to the total of all odd numbers
If even, add to the total of all...