Quantcast
Channel: Finding the average of certain numbers out of a text file - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Finding the average of certain numbers out of a text file

$
0
0

Here is my code:

import java.util.Scanner;import java.io.File;import java.io.FileNotFoundException; public class QuestionTwo{public static void main(String[] args) throws FileNotFoundException { System.out.println("Please enter a file name");Scanner keyboard = new Scanner(System.in);double average;double numbertocheck;int length;String filename = keyboard.next();Scanner reader = new Scanner (new File(filename));length = reader.nextInt();//Here is where I would put the statement that says "File is not found, enter the filename again"System.out.println("The number to check: ");numbertocheck = keyboard.nextDouble();if (length > numbertocheck){  //here is where I would put the average calculation  System.out.println("The average of the numbers that are greater than"+ numbertocheck +"is " /**+ average*/);}}}

with the text file looking as such:

3044235643232359012

My output comes out to nothing; it simply asks the two questions and draws a blank (even before I made a bunch of things into comments). This code is attempting to answer the question:

"Write a program that asks the user to enter the name of a file that contains a set of integer values, and then asks the user to enter an integer number.

The program should display the average of the numbersthat are greater than the input number. Use Notepad or another text editor to create a simple file that can be used to test the program.

First, the user enters the file name as below:Enter the file name: input.txtand if, for example, the file ‘input.txt’ contains the following numbers:

3044235643232359012

and then, if the user enters an integer number, as:

The number to check: 40

the program should display the output as:

The average of the numbers that are greater than 40 is 58.25

Note that average of numbers 44, 56, 43 and 90 is 233/4 = 58.25. The average must be shown up to two decimal points.

If the input file is not found, the user must be prompted to enter the filename again with the following message

“File is not found, enter the filename again”.

Which will then prompt the question to be again until a valid file is found."

The problems arise for me when it comes to parsing the text file and finding the average of the numbers greater than the value asked for. That and looping the question asking the user to enter the file name and then repeating that question until a file is found. I have thought of using the Decimal format class, but do not know how to properly utilize it. Any help would be appreciated!


Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>