While loop
Цикъл с пред условие:
Синтаксис:
while(condition)
{
statement(s);
}
Пример:
Изход:
Пример
Безкраен цикъл:
Пример с масив
Изход:
Last updated
Was this helpful?
Синтаксис:
while(condition)
{
statement(s);
}
Изход:
Безкраен цикъл:
Изход:
Last updated
Was this helpful?
Was this helpful?
class WhileLoopExample {
public static void main(String[] args){
int i=10;
while(i>1){
System.out.println(i);
i--;
}
}
}10
9
8
7
6
5
4
3
2class WhileLoopExample2 {
public static void main(String[] args){
int i=10;
while(i>1)
{
System.out.println(i);
i++;
}
}
}while (true){
statement(s);
}class WhileLoopExample3 {
public static void main(String[] args){
int arr[]={2,11,45,9};
//i starts with 0 as array index starts with 0 too
int i=0;
while(i<4){
System.out.println(arr[i]);
i++;
}
}
}2
11
45
9