Java Program to Display Multiplication Table of Any Number

Program

class Table
{
	public static void main(String...s)
	{
		int n,i;
		n=Integer.parseInt(s[0]);
		
		for(i=1;i<=10;++i)
			System.out.println(n+" * "+i+" = "+(n*i));
	}
}

Output

Java Program to Display Multiplication Table of Any Number

Leave a Comment

error: Alert: Content is protected!!