Showing posts with label do while loop. Show all posts
Showing posts with label do while loop. Show all posts

Saturday, 15 June 2013

java do while loop

public class Test {

   public static void main(String args[]){
      int x = 10;

      do{
         System.out.print("value of x : " + x );
         x++;
         System.out.print("\n");
      }while( x < 20 );
   }
}