Assignment # 9 and Printing Choices

Code

        /// Name: Tommy Oyuntseren
        /// Period: 7
        /// Program Name: PrintingChoices
        /// File Name: PrintingChoices.java
        /// Date Finished: 9/21/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( "Mongolia" ); 
         System.out.println();
         System.out.println( "This" + " " + "is" + " " + "a" + " test." );
 
     }
 }

  

Picture of the output

Assignment 9