dhust
8/1/2013 - 8:59 PM

A generic do-while loop

A generic do-while loop

public class DoWhileLoop {

  public static void main(String[] args) {

    boolean condition = true;

    do {

      // code that will repeat goes here

    } while (condition == true);
	
  }

}