114

Code

  ///Name: Conner Wygaerts
///Period: 6
///Project Name: TimesTable
///File Name: TimesTable.java
///Date Finished: 5/4/16


import java.util.Scanner;

public class TimesTable
{
    public static void main( String[] args ) throws Exception
    {
    
            System.out.println("x | 1\t2\t3\t4\t5\t6\t7\t8\t9");
            System.out.println("==+==================================================================");
            
            for (int a = 1; a < 13; a++)
            {
                System.out.print( a + " | ");
                
                for (int b = 1; b < 10; b++)
                {
                    System.out.print( (a*b) + "\t" );
                }
                System.out.println();
            }
        }
    }
  
  

Picture of the output

YourInitials.html