// This is a template to be used for all single-class ITI 1120 programs.

// ITI 1120 Winter 2012, Assignment 0, Question 57
// Name: Gilbert Arbez, Student# 123456

/**
 * Replace this comment with a description of your program.
 */

class Template // Replace 'Template' with your own algorithm name.
{
  public static void main (String args[ ])
  {
    // DECLARE VARIABLES/DATA DICTIONARY
    // PRINT OUT IDENTIFICATION INFORMATION
    System.out.println("ITI 1120 Fall 2008, Assignment 0, Question 57");
    System.out.println("Name: Grace Hoper, Student# 12345678");
    System.out.println();
    
    // READ IN GIVENS use our ITI1120 special class for keyboard input    
    // BODY OF ALGORITHM - Call to the method to solve problem
    // PRINT OUT RESULTS AND MODIFIEDS
  }
  
  // Problem Solving Method
  // Description: Short description of what the
  // method does, 
  // Parameters (GIVENS): 
  //    A description of variables in the parameter list
  public static double name( )
  {  
    // DECLARE VARIABLES/DATA DICTIONARY
    // INTERMEDIATES
    // RESULT
    
    // BODY OF ALGORITHM
    
    // RETURN RESULT
    return ;
  }
  
} // Don't remove this brace bracket!
