java

Nested while loop in Java language

Nested whileloop in Java language

In this tutorial, we will discuss the Nested while loop in java language.

Nested whileloop

When a whileloop exists inside the body of another whileloop, it is known as nested whileloop in Java.

Flow diagram

flow diagram



Syntex

while(expression)
   {
    statements;

      while(expression)
         {
             statements;
         }
   }

Here we can see, a whileloop is inside the body another whileloop.


Example in nested while loop

Program 1

The program displays square star pattern using nested whileloop

Example


When you execute above code , it produces the folloing result

**********
**********
**********
**********
**********
**********
**********
**********
**********
**********

program 2

The program displays Floyd’s triangle star pattern using nested whileloop.

Program

When you execute above code , it produces the folloing result

*
**
***
****
*****
******
*******
********
*********
**********


Program 3

The program displays multiplication table using nested while loop.

class nestedwhileloop
{
public static void main (String args[])
{
int i=1, j=1;
System.out.println(“Tables”);
while(i<=2)
{
while(j<=12)
{
System.out.println(i+”*”+j+”=”+(i*j));
j++;
}
i++;
System.out.println(“”);
j=1;

}
}

}

When you execute above code , it produces the folloing result.

Program

Related Links

Karmehavannan

Recent Posts

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

11 months ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

11 months ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

11 months ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

11 months ago

Function/method to convert Celsius into Fahrenheit -Entered by user

Function/method to convert Celsius into Fahrenheit -Entered by user In this article, we will discuss…

11 months ago

Temperature conversion: Celsius into Fahrenheit using function or method

Temperature conversion: Celsius into Fahrenheit using a function or method In this article, we will…

11 months ago

This website uses cookies.