Prog9: Printing Choices

   ///Name: Ilana Levy
  ///Period: 5
  ///Program Name: Printing Choices
  ///File Name: Printing.java
  ///Date finished: 9/6/2015
  
  public class Printing
  {
          public static void main( String[] args )
          {
                  System.out.println( "Alpha" );
                  System.out.println( "Bravo" );
                  System.out.println( "Charlie" );
                  System.out.println( "Delta" );
                  System.out.println();
                  
                  System.out.print( "Echo" );
                  System.out.print( "Foxtrot");
              
                  System.out.println( "Golf" );
                  System.out.print( "Hotel");
                  
                  System.out.println();
                  System.out.println( "India" );
                  System.out.println();
                  System.out.println( "This" + " " + "is" + " " + "a" +" " + "test." );
          }
  }