import java.io.File;
import java.io.IOException;
import java.util.Scanner;

/**
 * CS312 Assignment 7.
 * 
 * On my honor, <NAME>, this programming assignment is my own work and I have
 * not shared my solution with any other student in the class.
 *
 * A program to play determine the extend of home field advantage in sports.
 *
 *  email address:
 *  UTEID:
 *  Unique 5 digit course ID:
 *  Grader name:
 *  Number of slip days used on this assignment:
 */
 
 /**
 * Analysis of results. Include your write-up of results and analysis here:
 *
 */
 
public class HomeField {

    // Ask the user for the name of a data file and process
    // it until they want to quit.
    public static void main(String[] args) throws IOException {
        System.out.println("A program to analyze home field advantage in sports.");
        System.out.println();
        // CS312 students. Do not create any other Scanners connected to System.in.
        // Pass keyboard as a parameter to all the methods that need it. 
        Scanner keyboard = new Scanner(System.in);

        // CS312 students - Add your code here
        
        keyboard.close();
    }

    // CS312 Students - Add your methods here.
}
