Display 2 to 10 Tables in Java

In this class, We discuss Display 2 to 10 Tables in Java.

The reader should have prior knowledge of loops in Java. Click Here.

Question:

We need to display 2 to 10 tables.

Each table is displayed from 1 to 10.

Example:

2 * 1 = 2

The last entry in the two tables is 2 * 10 = 20

Similarly, 3, 4, and upto ten tables.

The below diagram shows the program.

2 * 1, 2* 2, we need to do multiplication operations ten times.

From the last class, we know when to use the loop.

If a code should be repeated multiple times, we use loops.

So we use a loop to display two tables.

The same loop should be repeated to display the remaining tables.

So we need to loop within the loop.

The outer loop will take the numbers 2 to 10.

For each outer loop, the inner loop executes ten times and displays a table.

The execution of the program is very important for writing future programs.

Please focus on how the variables are used to display the tables.