Java #5: How to Create A Do-While Loop

//How to create a do while loop//

//do counter//
int counter = 0;

//Beginng of Do//
do
{
//printing out at each iteration//
System.out.println(“Counter value = “+counter);

//adding at each iteration to keep the loop moving
counter = counter + 1;
} //End of Do//
while (counter <6);//The terminating condition//

Java_Do_While

 

Leave a comment