Assignemnt #9 and PrintingChoices

Code

  /// name: Leila Ordukhani
  /// period: 6
  /// program name: Sixth Program
  /// file name: PrintingChoices.java
  /// date finished: 9/14/15
   public class PrintingChoices
  {
      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." );
 
     }
 }
  

Picture of the output

Assignment 9