Question: Write a method called evenNumbers that accepts a Scanner reading input from a file with a series of integers, and report various statistics about the
Write a method called evenNumbers that accepts a Scanner reading input from a file with a series of integers, and report various statistics about the integers to the console. Report the total number of numbers, the sum of the numbers, the count of even numbers and the percent of even numbers. For example, if the input file contains the following text:
5 7 2 8 9 10 12 98 7 14 20 22
Then the method should produce the following console output:
12 numbers, sum = 214
8 evens (66.67%)
Step by Step Solution
3.45 Rating (158 Votes )
There are 3 Steps involved in it
public static void evenNumbers Scanner input int count 0 M S... View full answer
Get step-by-step solutions from verified subject matter experts
