Java Program to print Multiplication Table!!!



This is the simple program from which we can print the table of integer

according to our choice.

In this program we are using "for loop" which will display the table.


import java.util.Scanner;

class MultiplicationTable
{
   public static void main(String args[])
   {
      int n, c;

      System.out.println("Enter integer to print it's multiplication table");

      Scanner in = new Scanner(System.in);

      n = in.nextInt();

      System.out.println("Multiplication table of "+n+" is :-");

      for ( c = 1 ; c <= 10 ; c++ )

         System.out.println(n+"*"+c+" = "+(n*c));

   }

}



Output : 


Previous Post Next Post