// inport needed classes from packages

public class Lab6template
{
   public static void main (String [] args)                   
	{
 
      // declarations of needed variables and objects
		                                         // character array
		                    							  // input String	
		                                         // file and keyboard Scanners
		                                         // input and output filenames
	                                            // boolean telling whether file found
		                      						  // integer String length
		                        					  // FileWriter	
	                                            // BufferedWriter
	                                          // Print Writer
					
		// initialize needed variables
		                       

		
		// instantiate keyboardScanner
		                                           
		
		// get filenames from user
		                                                                        
		                                            
				
		                                                                         
		                                            
		
		// instantiate input file and keep trying until successful
		  
		      
		   
		                                                            
			                         
         
		                                    
		   
		                                                        
		                                                           
			                                                      
			                                              
		   
	                            
		
		   // get data from file
		                                     
	
		// instantiate Objects needed to output to a  file    
                                                      
	                                                         
	                                                       
				
		// echo the input String to the screen & to your output file
		                                                                 
		                                                                   
		
		//  determine input String's length & output it to screen & output file
		                                           
		                   
		                                                               
		                      
		                                                                 

		/*  
		    output the characters in the input String to file & screen, 1 per line
		    preceded by the following statement: 
		    Here are the input file characters printed using a standard FOR statement 
      */
		  
           // print the header statements
                          
		                                                                                  
		                       
		                                                                                  

			 // print the characters in the String
		                                            
		 
		                                             
		                                                 
		 
	
	   // print a blank line to the screen and to the file
		                       
		                         
		
		// transform the inputString into an array using the String Method
		                                       
	
		/* using the alternate form of a FOR loop described on pages 249, shown on page 251 and
		   on page 384  print the letters in the array on a single line
		   preceded by the following statement
		   Here are the character in the array printed using the foreach loop form
		*/
		
			// print the header statements	
		                  
    		                                                                               
		                    
   		                                                                               

		   // print the characters in the array using the foreach loop form
		                                 
		 
		                                  
			                                 
		 
		
		// print two blank lines
		                       
		
		// close the output file
		                       
		
		// print out the names of the input and output files
		                                                                     
		                                                                           
	}
}
	 
		    