 /*****************************************************************
 * Program: Basketball Scores 
 * Programmer: Insert your name here 
 * 
 * Due Date: Insert due date
 * Class: COMP 110-01         Instructor: Tyler Johnson
 *         
 * Pledge: I have neither given nor received unauthorized aid
 * on this program.     (signature on file)
 *
 * Description: This program asks the user to input a number of 
 *				basketball scores and then calculates some
 *				statistics on them.
 *
 *				The statistics calculated include:
 *					-# of games
 *					-# of games scoring at least 90 points
 *					-% of games scoring at least 90 points
 *					-average score
 *					-lowest & highest scores
 *
 * Input: A number of basketball scores, a negative score indicates
 *			end of input.
 *
 * Output: Statistics
 *
 ******************************************************************/

public class BasketballScores  {

	public static void main(String[] args)  {
	
		//YOUR LOOP HERE
		
		//add your output for each item to these lines		
		System.out.println("The total number of games is ");
		
		System.out.println("The total number of games scoring at least 90 points is ");
		
		System.out.println("The percentage of games scoring at least 90 points is ");
		
		System.out.println("The average game score is ");
		
		System.out.println("The lowest and highest scores are ");
	
	}
}