Answers for "do while examples"

3

Do-While loop

do {

//code;

//code;

}while(condition)
Posted by: Guest on August-22-2021
0

Example of a 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 );
   }
}
Posted by: Guest on August-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language