Q:

Java program to implement nested loop using for loop

belongs to collection: Java Basic Programs

0

Java program to implement nested loop using for loop

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will use the for loop to print tables from 2 to 5.

Program/Source Code:

The source code to implement the nested loop using the for loop is given below. The given program is compiled and executed successfully.

// Java program to implement nested loop 
// using the for loop

public class Main {
  public static void main(String[] args) {
    int cnt1 = 0;
    int cnt2 = 0;

    for (cnt1 = 2; cnt1 <= 5; cnt1++) {
      for (cnt2 = 1; cnt2 <= 10; cnt2++) {
        System.out.print((cnt1 * cnt2) + " ");
      }
      System.out.println();
    }
  }
}

Output:

2 4 6 8 10 12 14 16 18 20 
3 6 9 12 15 18 21 24 27 30 
4 8 12 16 20 24 28 32 36 40 
5 10 15 20 25 30 35 40 45 50

Explanation:

In the above program, we created a public class Main. It contains a static method main().

The main() method is an entry point for the program. Here, we used a nested for loop to print tables from 2 to 5.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to demonstrate the break statement wi... >>
<< Java program to implement infinite loop using do-w...