Assignemnt #9

Code

    /// Name: Ryan Volko
    /// Period: 7
    /// Program Name: Printing Choices
    /// File Name: PrintingChoices.java
    /// Date Finished: 9/9/2015
  
    class PrintingChoices {
    
        public static void main(String[] args) {
            System.out.println("hi");
            System.out.print("hey");
            System.out.print("what");
            System.out.println();
            System.out.println("hello");
            System.out.print("My" + " " + "name" + " " + "is" + " " + "Ryan");
            System.out.println("My name is Ryan");
        }
    }
    

Picture of the output

Assignment 9