// Name _____________________________

// Given the stub below, fill in the code in the places required

   import java.util.Scanner;
   import java.io.*;
   public class FilePlay
   {
      public static void main (String [] args)
      {
         String fileName;
         Boolean found;
         Scanner keyboard;
         FileReader myFileReader;
      
         keyboard = new Scanner (System.in);
      
      // ask user for the name of the input file
                                                                    
      
      // pick up the user's filename
                                        
      
      // want to open that file for input.
		// it's possible that the file name may not be correct and that the file 
		// will not be found
      // will want to loop until it is found
      // use a Boolean variable named found as a flag  set it to false
                       
							  
      // while the file is not found loop
                        
          
         // try to open the file
         
		
			       
           // if the file is opened, then it has been found set the Boolean variable to true
                
               
              
         // catch the exception thrown if the file is not found   
                  
              
             // ask the user to re-enter the name.
                   
                  
                  
         
      }
   }