/*********************************************************************
* Build a multiplication table
* Static User Class 
*********************************************************************/

public class MultiplyUse
{
    public static void main(String[ ] args)
    {
        Multiply.table(10, 10);                     //call the table() method 10,10

        System.out.println("--------");             //print a new line

        int maxRow = Multiply.getRandom(1,10);      //random number 1 - 10       
        int maxCol = Multiply.getRandom(1,10);      //random number 1 - 10       

        Multiply.table(maxRow, maxCol);             //call the table() method with rand Row,Col
    }   
}