Assignment #9 Printing Choices

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: 9
    /// File Name: PrintingChoices.java
    /// Date Finished: 9/10/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