Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a complete Java program called CalcWeightedAvgDropLowest according to the following guidelines. For this program, instead of getting the data from the user via System.in,

Write a complete Java program called CalcWeightedAvgDropLowest according to the following guidelines. For this program, instead of getting the data from the user via System.in, get only the name of the input file - which you should hard-code to "data.txt". See Horstmann's program Total.java in Section 7.1, pp. 319, 320, on which this assignment is based. For our program, you should create the data.txt file ahead of time (see below) and then prompt the user for the name of the input file, telling the user that the name of the input file should be "data.txt". Note that the methods for getting the input from a file and writing the output to a file will need to handle exceptions, whereas in Horstmann's Total.java example, only the main method needs to handle exceptions. Input File The input file - which you need to create and prompt the user for the name of - should be called 'data.txt', and it should be created according to the instructions below. The input file should contain (in order): the weight (greater than 0 and less than or equal to 1), the number, n, of lowest numbers to drop, and the numbers to be averaged after dropping the lowest n values. For example, you might have these values in your input file (data.txt): 0.5 3 10 70 90 80 20 Creating the Input file To create the input file, while in NetBeans with your project open, click to highlight the top-level folder of your project in the projects tab at the upper left. Then starting with the NetBeans File menu, doimage text in transcribed In the empty file data.txt that you just created, add a single line of data like the one in the example above, where the weight is a double (greater than 0.0 and less than or equal to 1.0) and the other numbers are the number, n, of lowest values to drop, and then the numbers to be averaged after dropping the lowest n values. Then save this data.txt input file. It's important that your input file is where NetBeans will look to find it. The above instructions should make sure that that happens. Main method Your main method should include methods to get the data, to calculate the weighted average, and to print the results. In the method that prints the results, you should prompt the user for the name of an output file and print the results to that output file. Output Given the sample values above in the data.txt input file, the output file should contain something very much like the following: The weighted average of the numbers is 42.5, when using the data 10.0, 70.0, 90.0, 80.0, 20.0, where 0.5 is the weight used, and the average is computed after dropping the lowest 3 values. Prompting for names of input file and output file Make sure you prompt the user for the name of the input file (even though we know what it is). You can use a prompt like: "Enter "data.txt" (no quotes) for the name of the input file: " Also prompt the user for the name of the output file. If you use code like that in Horstmann's Total.java program to create the output file, the output file should be located at the same place as the input file. Check the NetBeans Files tab (next to the Project tab in the upper left) to see both the input and output files.

File- New File Keep the Project name at the top; keep Filter blank For Categories choose other cat the bottom of the categories list) For File Types choose Empty File Cat the bottom of the files list) Next FileName: data.txt Folder: this should be blank; if it's not, delete whatever 's there Finish

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Describe the sources of long term financing.

Answered: 1 week ago

Question

4. What sales experience have you had?

Answered: 1 week ago