2-5 Adjusted

Post date: Jan 23, 2014 12:55:15 PM

// A well adjusted printing program

package adjusted;

public class Adjusted

{

    public static void main(String[] args) 

    {

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

           System.out.print("Computer games\nCoffee\n");

           System.out.println("Aspirin");

    }   

}