2-6 Tabs
Post date: Jan 23, 2014 1:03:50 PM
// Another well-adjusted printing program
package tabs;
public class Tabs
{
public static void main(String[] args)
{
System.out.print("These are our top sellers:\n");
System.out.print("\tComputer games\n\tCoffee\n") ;
System.out.println("\tAspirin");
}
}