Programming assignment 2 the exam statistics program


Programming Assignment #2

The Exam Statistics Program

Include a Table of Contents here...

* Assignment #2: The Exam Statistics Program

* MCIS 503, Summer 2013

* Author: Student Name

* Date: 07 June 2013

* Revision: 1.0*

 

importjava.util.Scanner;

importjava.io.IOException;

importjava.io.FileReader;

importjava.io.BufferedReader;

importjava.util.Arrays;

* ExamStatisticsProgram

* This program is designed to compute statistics on a list of exam scores read

* from a text file in response to a console prompt. The console program

* welcomes the user and asks for the name of the text file to input. The text

* file contains the number of scores followed by the list of scores. The

* program then computes and displays the following information to the console:

* The number of scores The minimum, maximum, and average scores The number of

* A's, B's, C's, D's, and F's; using a 90-80-70-60 scale The median of the scores.

 

* @authorStudent Name

* @date 07 June 2013

* @version 1.0

* @paramfileName- The name of the file to read from the user

* @throwsIOException- If there is a problem reading file

 

public class ExamStatisticsProgram {

declarations here...

* Method main

* The main method is the primary method of the ExamStatisticsProgram. Main is designed to be the primary calling routine from which methods are called and returned.

* @authorStudent Name

* @date 07 June 2013

* @version 1.0

public static void main(String[] args) {

logic here...

} // End Main

All other methods declared and implemented here...

Place screen captures here of at least 3 runs (different scenarios) of your program (be sure they are readable).

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: Programming assignment 2 the exam statistics program
Reference No:- TGS01558391

Expected delivery within 24 Hours