Java#4: How to Create a While Loop in Java

 

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

Java_While_Loop

Leave a comment