Assignemnt #9
Code
/// Name: Daniel Nguyen
/// Period: 6
/// Program Name: PrintingChoices Program
/// 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( "Charlie" );
System.out.println( "Delta" );
System.out.println();
System.out.println( "Echo" );
System.out.println( "Foxtrot" );
System.out.println( "Golf" );
System.out.println( "Hotel" );
System.out.println();
System.out.println( "India" );
System.out.println();
System.out.println( "This" + " " + "is" + " " + "a" + " test." );
}
}
Picture of the output