Produces a simple formatted report

Assignment Help JAVA Programming
Reference no: EM13166761

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
        }
        

}

Reference no: EM13166761

Questions Cloud

Explain what is the ph at the equivalence point : What is the pH at the equivalence point when 100.00 mL of a 0.200 M solution of acetic acid (CH3COOH) is titrated with 0.10 M NaOH to its end point?
Evaluate the recommendation of the vice president : Evaluate the recommendation of the Vice president (Treating Ad as cost of production and overhead). The effect on financial statements.
State hemoglobin is protein that transports through blood : Hemoglobin is the protein that transports O2 through the blood from the lungs to the rest of the body. In doing so, each molecule of hemoglobin combines with four molecules
Determine the breakeven point in units and dollars : Prepare a contribution margin income statement separating all variable and fixed costs into their own categories and determine the breakeven point in units and dollars. Also, determine the number of units and dollars that need to be sold to make a ..
Produces a simple formatted report : 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)
Compute the predetermined overhead rate : Compute the predetermined overhead rate and prepare the entry to apply the overhead for the year.
Stae the reaction occurs and the temperature returns : After the reaction occurs and the temperature returns to 22°C, what is the pressure inside the flask? (Neglect the volume of the solid product.)
Financial year of triceratops toys : Discuss whether Triceratops Toys Manufacturing Limited's profits are subject to Hong Kong profits tax for the year of assessment 2012/13. The financial year of Triceratops Toys Manufacturing Limited ends on 31 March each year.
Currently the atm is idle : Currently the ATM is idle. Find the probabilities that, in 3 minutes, the ATM will be idle; will be serving one customer with no one in the queue; will be serving one customer with one customer waiting in the queue

Reviews

Write a Review

JAVA Programming Questions & Answers

  Point of sale terminal

a software implementation of a Point of Sale terminal at a typical store. The users of the system are the cashiers sitting at the sales terminals of the store. The users can use the system to manage sales items in the store, customer details and of c..

  Write java program which will permit user to make selection

Write the Java Program which will permit the user to make selection. You will present user with two options to perform, then you will perform action selected by user.

  Socket programming in java: tcp

In this project we will develop a Web server in two steps. In the end, you will have built a multi-threaded Web server that is capable of processing multiple simultaneous service requests in parallel.

  Accepts a binary number from the user

Write a Java test program that accepts a binary number from the user. You should store the binary number in a String. Your program should then use afor loop to sequence through every character in the String, counting the number of ones, zeros, and..

  Design a class named large integers

Design a class named largeIntegers such that an object of this class can store an integer of any number of digits.

  Create a deque class based on the discussion of deques

Create a Deque class based on the discussion of deques (double-ended queues) in this chapter. It should include insertLeft(), insertRight(), removeLeft(), removeRight(), isEmpty(), and isFull() methods.

  Three most primary forms of loops: the while loop, the do..

explored the world of loops we have accepted the three most primary forms of loops: the while loop, the do...while loop (even though Python does not use this loop), and the for loop. The for loop has approximately three primary implementations that w..

  Simulate some people catching fish in a lake in java program

In this project, you will simulate some people catching fish in a lake. The purpose of the assignment is to get used to using Arrays as well as getting more experience in having objects interact together.

  Class that stores information about a report

Create a class that stores information about a report containing multiple currency transactions in multiple currencies. This includes the name of the report and each of the transactions that occurred.

  Write a complete program which computes the sum

Write a complete program (actually complete the one on the exam) which computes the following sum: ( 100 / 1 ) + ( 99 / 2 ) + ( 98 / 3 ) + ( 97 / 4 ) + ... + ( 3 / 98 ) + ( 2 / 99 ) + ( 1 / 100 ) Use a FOR loop in your program (where indicated) to..

  Create a constructor in the subclass why

Assume there is a base class with multiple constructors, if the subclass inherits from the base class, do we need to create a constructor in the subclass? Why?

  Java program to create a tree

Java program to create a tree, generate class - BottomUpTwoThreeFourTree, BottomUpTwoThreeFourTree,

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd