Assignemnt #114

Code

//colin hinton
//5th period
//mul.java
//5/6/2015

class mul
{
    public static void main (String [] args)
    {
        for (int x = 1; x < 13; x++)
        {
            for (int y = 1; y < 10; y++)
            {
                System.out.print((x*y) + "\t");
            }
            System.out.println();
        }
    }
}
    

Picture of the output

Assignment 1