Biology, asked by kisshusharma2017, 3 months ago

Define nested For loop. With examples. Write both the examples. (with output so that in future you can understand the program)​

Answers

Answered by madhugupta15283
0

Answer:

Nested for loop is defined as the using of two or more than two For loop.

Explanation:

Ex.

for(int i=1,i<10,i++)

{

for(int j=1,j<5,j++)

{

system.out.println(j);

}

}

Similar questions