//How to use a While Loop in Java//
//Counter
int counter = 0;
//While Loop//
while (counter <4)
{
//Printing out each iteration of counter until the loop finishes//
System.out.println(“The current counter value is:”+counter);
//adding one to counter to keep the loop iterating
counter = counter + 1;
}
