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
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
When you execute above code , it produces the folloing result
**********
**********
**********
**********
**********
**********
**********
**********
**********
**********
program 2
The program displays Floyd’s triangle star pattern using nested whileloop.
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.
Related Links
Subtract two numbers using method overriding Program 1
PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…
Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…
Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…
Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…
How to write a program to convert Fahrenheit into Celsius In this article, we will…
This website uses cookies.