2-4 Unruly

Post date: Jan 23, 2014 12:25:05 PM

// An unruly printing program

package unruly;

public class Unruly

{

    public static void main(String[] args) 

    {

           System.out.print("These are our top sellers:");

           System.out.print("Computer games");

           System.out.print("Coffee");

           System.out.println("Aspirin");

    }   

}