Assignment 9: Printing Choices

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: Printing Choices
    /// File Name: Assignment9.java
    /// Date Finished: 9/9/15

    class Assignment9 {

      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" + " " + "just so you know I" + " completed this lesson." );

      }
    }
    

Picture of the output

Assignment 9