Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Цикл While | Цикли
Основи Java
course content

Зміст курсу

Основи Java

Основи Java

1. Початок Роботи
2. Основні Типи та Операції
3. Цикли
4. Масиви
5. String

book
Цикл While

In the previous chapter, you could see that with the help of a loop, we repeated the code 10 times. Now, let's examine the syntax of one of these loops.

У попередньому розділі ви могли бачити, що за допомогою циклу ми повторили код 10 разів. Тепер давайте розглянемо синтаксис одного з таких циклів.

java

Main

copy
123
while (condition) { // code to be executed }

To remember how this loop works, you can follow a simple rule: While the condition is true, perform the operation. For example, while it's raining, I use an umbrella. As soon as the rain stops, I go without an umbrella.

It's raining - the condition
I use an umbrella - the code executed inside the loop
The rain has stopped - the compiler exits the loop and stops executing the code inside the loop.

It's that simple.

Щоб запам'ятати, як працює цей цикл, можна скористатися простим правилом: Поки умова істинна, виконуйте операцію. Наприклад, поки йде дощ, я використовую парасольку. Як тільки дощ припиняється, я йду без парасольки.

Йде дощ - умова
Я беру парасольку - код, що виконується всередині циклу
Дощ припинився - компілятор виходить з циклу і припиняє виконання коду всередині циклу.

Ось так просто.

Here's an example to demonstrate the while loop:

java

Main

copy
123456789101112131415
package com.example; public class Main { public static void main(String[] args) { int a = 0; int b = 10; while (a != b) { a = a + 1; System.out.println("a has value: " + a); b = b - 1; System.out.println("b has value: " + b); } System.out.println("Is a equals to b: " + (a == b)); } }

Ось приклад для демонстрації циклу while:

Завдання
test

Swipe to begin your solution

Print the numbers from 1 to 5 using a while loop.

Рішення

java

solution

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 2
toggle bottom row

book
Цикл While

In the previous chapter, you could see that with the help of a loop, we repeated the code 10 times. Now, let's examine the syntax of one of these loops.

У попередньому розділі ви могли бачити, що за допомогою циклу ми повторили код 10 разів. Тепер давайте розглянемо синтаксис одного з таких циклів.

java

Main

copy
123
while (condition) { // code to be executed }

To remember how this loop works, you can follow a simple rule: While the condition is true, perform the operation. For example, while it's raining, I use an umbrella. As soon as the rain stops, I go without an umbrella.

It's raining - the condition
I use an umbrella - the code executed inside the loop
The rain has stopped - the compiler exits the loop and stops executing the code inside the loop.

It's that simple.

Щоб запам'ятати, як працює цей цикл, можна скористатися простим правилом: Поки умова істинна, виконуйте операцію. Наприклад, поки йде дощ, я використовую парасольку. Як тільки дощ припиняється, я йду без парасольки.

Йде дощ - умова
Я беру парасольку - код, що виконується всередині циклу
Дощ припинився - компілятор виходить з циклу і припиняє виконання коду всередині циклу.

Ось так просто.

Here's an example to demonstrate the while loop:

java

Main

copy
123456789101112131415
package com.example; public class Main { public static void main(String[] args) { int a = 0; int b = 10; while (a != b) { a = a + 1; System.out.println("a has value: " + a); b = b - 1; System.out.println("b has value: " + b); } System.out.println("Is a equals to b: " + (a == b)); } }

Ось приклад для демонстрації циклу while:

Завдання
test

Swipe to begin your solution

Print the numbers from 1 to 5 using a while loop.

Рішення

java

solution

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 2
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt