Assignemnt #9 Printing Choices
Code
/// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Printing Choices
/// File Name: PrintingChoices.java
/// Date Finished: 9/10/2015
public class PrintingChoices
{
public static void main( String[] args )
{
System.out.println( "Ichi" );
System.out.println( "Ni" );
System.out.println( "San" );
System.out.println( "Shi" );
System.out.println();
System.out.print( "Go" );
System.out.print( "Roku" );
System.out.println( "Hachi" );
System.out.print( "Nana" );
System.out.println();
System.out.println( "Ku" );
System.out.println();
System.out.println( "wow" + " " + "japanese" + " " + "so" + " good desu." );
}
}
Picture of the output