Assignment #9 and Sixth Program

Code

        /// Name: Georgi Atanasov
        /// Period: 5
        /// Program Name: PrintingChoices
        /// File Name: PrintingChoices.java
        /// Date Finished: 9/9/2015

                         public class PrintingChoices
                  {
                                      public static void main( String[] args )
                         {
                   System.out.println( "Alpha" );
                   System.out.println( "Bravo" );
      
                   System.out.println( "Theta" );
                   System.out.println( "Delta" );
                   System.out.println();
     
                   System.out.print( "Echo" );
                   System.out.print( "Tango" );
     
                   System.out.println( "Tennis" );
                   System.out.print( "Motel" );
                   System.out.println();
                   System.out.println( "China" );
     
                   System.out.println();
                   System.out.println( "Does" + " " + "this" + " " + "work." );
     
                         }
                   }
    

Picture of the output

Assignment 9