For this lab you will write a java program that produces a


For this lab you will write a Java program that produces a simple formatted report. The program will prompt the user to enter a file name. This file must contain information in a specific format (detailed below). Each "block" of the file contains information for one player in a competition -- the name of the player followed by a number of different scores that that player achieved. The program should find each player's average score, median score and best and worst scores and display them in a line on the final summary report. The program should also determine which player has the highest average score and which player has the lowest average score. (HINT: Consider storing information in ArrayLists to make the final summaries easier to produce).

For this assignment you should start with the following "skeleton" of Java code. Import this into your Eclipse workspace and fill in the methods as directed. The skeleton provided for this assignment is much more "skeletal" than previous assignments. For this assignment you MUST add at least two extra methods beyond the methods defined in the skeleton. These methods must not be trivial one or two line methods, but a real breakdown of the code. Consider adding methods to write the formatted report, or helper methods for reading the input file or computing necessary values. Feel free to add any methods you find useful, and make sure that you add comments indicating what they do following the form of the rest of the comments in the code.

Project11.java
*
* A program that reads in a text file that uses a specific input format and uses it to
* produce a formatted report for output.
*
* See the write-up for Homework Lab 13 for more details.
*
* This skeleton is more "skeletal" than previous labs. You MUST break your code up into
* more methods than what you see here. Consider methods to display the formatted report
* as well as more methods to compute values for the report.
*
* @author ENTER YOUR NAME HERE
*
*/
package osu.cse1223;
import java.io.*;
import java.util.*;

public class Project11 {

public static void main(String[] args) {
// Fill in the body
}

// Given a Scanner as input read in a list of integers one at a time until a negative
// value is read from the Scanner. Store these integers in an ArrayList and
// return the ArrayList to the calling program.
private static List readNextSeries(Scanner inScanner) {
// Fill in the body
}

// Given a List of integers, compute the median of the list and return it to
// the calling program.
private static int getMedian(List inList) {
// Fill in the body
}

// Given a List of integers, compute the average of the list and return it to
// the calling program.
private static int getAverage(List inList) {
// Fill in the body
}

}

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: For this lab you will write a java program that produces a
Reference No:- TGS0660966

Expected delivery within 24 Hours