//This is my code so far. If anyone guide me through that will be great.
Write a method named evenNumbers that accepts a Scanner as a parameter reading input from a file containing a series of integers, and report various statistics about the integers. You may assume that there is at least one integer in the file. 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 a Scannerinput on file numbers.txt contains the following text:
5 7 2 8 9 10 12 98 7 14 20 22
then the call evenNumbers(input); should produce the following output:
12 numbers, sum = 214
8 evens (66.67%)
public static void evenNumbers( double input) throws FileNotFoundException{
Scanner input = new Scanner(new File("numbers.txt"));
double sum = 0.0;
for (int count = 1; count <= 12; count++) {
double next = input.nextdouble();
sum += next;
System.out.println(count + "numbers," + "sum = " + next);
}
while ( count / 2 == 0) {
percent = (count / 2 == 0) / 100;
System.out.println( count + "evens" + "(" + percent + "%)" );
}
}