Java

Java Program to Print Multiplication Table of any Number1 min read

In this tutorial, we will see a simple Java program to display the multiplication table of a given number.

Print Multiplication table of a given number

In the program, user is asked to enter the number and the program prints the multiplication table of the input number using for loop. The loops run from 1 to 10 and the input number is multiplied by the loop counter in each step to display the steps of multiplication table.




Java Code: Java Program to Print Multiplication Table of a Number

Output:

Java Program to Print Multiplication Table of a Number

Java Program to Print Multiplication Table of a Number

Leave a Comment