Multiplication Table in Java by taking the Number and the Limit from the Command Line


class MultiTabUpto
{
	public static void main(String[] args)
	{
		int i;
		int num = Integer.parseInt(args[0]);
		int upto = Integer.parseInt(args[1]);
		for(i=1; i<=upto; i++)
		{
			System.out.println(num+ " * " +i+ " = "+num * i);
		}
	}
}

Snapshot of the o/p