Advertisement



< Prev
Next >



Java Do-While Loop





After discussing while loop in our previous tutorial, let us discuss another looping structure - do while loop. In do-while loop, a block of statements or the body of loop always comes before the condition of do-while loop is tested.







do while loop example


In the upcoming example, we are going to use do-while loop to print a series of numbers, starting from 0 to 4.

//do-while example
 
public class DoWhile   //class starts
{
public static void main(String... ar)  //main method starts
{
int i=0;

do 
{
	
	System.out.println("i = " + i);
	i++;

}while(i<5);

} //main method ends

} //class ends


Output


i = 0
i = 1
i = 2
i = 3
i = 4



Advertisement




do while loop is executed at least once


The body of do while loop is always executed during its first execution, even when the condition of loop is evaluated to be false, take a look at our next example -
//do-while example
 
public class DoWhile   //class starts
{
public static void main(String... ar)  //main method starts
{
int i=100;

do 
{
	
	System.out.println("i = " + i);
	i++;

}while(i<10);

} //main method ends

} //class ends


Output


i = 100




Please share this article -





< Prev
Next >
< While Loop
Break Statement>



Advertisement

Please Subscribe

Please subscribe to our social media channels for daily updates.


Decodejava Facebook Page  DecodeJava Twitter Page Decodejava Google+ Page




Advertisement



Notifications



Please check our latest addition

C#, PYTHON and DJANGO


Advertisement