The Java цикл while використовується для багаторазового повторення частини програми, доки задана булева умова не стане істинною. Як тільки логічна умова стає хибною, цикл автоматично зупиняється.
Цикл while вважається повторюваним оператором if. Якщо кількість ітерацій не фіксована, рекомендується використовувати while петля .
Синтаксис:
while (condition){ //code to be executed I ncrement / decrement statement }
Різні частини циклу do-while:
git status -s
1. Умова: це вираз, який перевіряється. Якщо умова виконується, тіло циклу виконується, а керування переходить до виразу оновлення. Коли умова стає хибною, ми виходимо з циклу while.
приклад :
i<=100< p>
2. Вираз оновлення: кожного разу, коли виконується тіло циклу, цей вираз збільшує або зменшує змінну циклу.
Java string replaceall
приклад:
i++;
Блок-схема Java While Loop
Тут важлива річ про цикл while полягає в тому, що іноді він може навіть не виконуватися. Якщо умова, що перевіряється, стає хибною, тіло циклу пропускається, і виконується перший оператор після циклу while.
приклад:
приклади nfa
У прикладі нижче ми друкуємо цілі значення від 1 до 10. На відміну від циклу for, нам потрібно окремо ініціалізувати та збільшити змінну, яка використовується в умові (тут i). В іншому випадку цикл виконуватиметься нескінченно.
WhileExample.java
public class WhileExample { public static void main(String[] args) { int i=1; while(i<=10){ system.out.println(i); i++; } < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre> <h2>Java Infinitive While Loop</h2> <p>If you pass <strong>true</strong> in the while loop, it will be infinitive while loop.</p> <p> <strong>Syntax:</strong> </p> <pre> while(true){ //code to be executed } </pre> <p> <strong>Example:</strong> </p> <p> <strong>WhileExample2.java</strong> </p> <pre> public class WhileExample2 { public static void main(String[] args) { // setting the infinite while loop by passing true to the condition while(true){ System.out.println('infinitive while loop'); } } } </pre> <p> <strong>Output:</strong> </p> <pre> infinitive while loop infinitive while loop infinitive while loop infinitive while loop infinitive while loop ctrl+c </pre> <p>In the above code, we need to enter Ctrl + C command to terminate the infinite loop.</p> <hr></=10){>
Java Infinitive While Loop
Якщо ви пройдете правда у циклі while це буде нескінченний цикл while.
Синтаксис:
while(true){ //code to be executed }
приклад:
WhileExample2.java
public class WhileExample2 { public static void main(String[] args) { // setting the infinite while loop by passing true to the condition while(true){ System.out.println('infinitive while loop'); } } }
Вихід:
підрядок java містить
infinitive while loop infinitive while loop infinitive while loop infinitive while loop infinitive while loop ctrl+c
У наведеному вище коді нам потрібно ввести команду Ctrl + C, щоб завершити нескінченний цикл.
=10){>=100<>