Do-while loop

Цикъл със след условие

Синтаксис:

do
{
   statement(s);
} while(condition);

Пример:

class DoWhileLoopExample {
    public static void main(String[] args){
         int i=10;
         do{
              System.out.println(i);
              i--;
         }while(i>1);
    }
}

Изход:

10
9
8
7
6
5
4
3
2

Пример с масив:

class DoWhileLoopExample2 {
    public static void main(String[] args){
         int arr[]={2,11,45,9};
         //i starts with 0 as array index starts with 0
         int i=0;
         do{
              System.out.println(arr[i]);
              i++;
         }while(i<4);
    }
}

Изход:

2 11 45 9

Last updated