Question: Write a Java program named Numbers that asks the user to enter numbers from the keyboard. Assume that they are integers. Start by asking the
Write a Java program named Numbers that asks the user to enter numbers from the keyboard. Assume that they are integers. Start by asking the user how many numbers that there are. The loop must use a for loop to iterates that many times. The output should be how many of the numbers were greater than zero, how many were even, and the total of the values that they entered. 
Sample output How many numbers are there? 5 Give me value # 1: 10 Give me value # 2: -5 Give me value # 3: 6 Give me value # 4: -2 Give me value #5: 11 The total value was 20 There were 3 positive values out of a total of 5 values entered 3 of the numbers were even numbers
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
