//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//
