logo

Java Whileループ

ジャワ while ループ 指定されたブール条件が true になるまで、プログラムの一部を繰り返し実行するために使用されます。ブール条件が false になるとすぐに、ループは自動的に停止します。

while ループは、繰り返しの if ステートメントとみなされます。反復回数が固定されていない場合は、while を使用することをお勧めします。 ループ

構文:

 while (condition){ //code to be executed I ncrement / decrement statement } 

do-while ループのさまざまな部分:

ジャワの色

1. 条件: テストされる式です。条件が true の場合、ループ本体が実行され、制御は式の更新に移ります。条件が false になると、while ループを終了します。

:

私<=100< p>

2. 式の更新: ループ本体が実行されるたびに、この式はループ変数を増加または減少させます。

Pythonプログラミングの演算子

例:

i++;

Java Whileループのフローチャート

ここで、while ループに関して重要なことは、場合によっては実行すらできないことがあるということです。テスト対象の条件の結果が false の場合、ループ本体はスキップされ、while ループの後の最初のステートメントが実行されます。

Java whileループのフローチャート

例:

マップJavaを反復処理する

以下の例では、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(&apos;infinitive while loop&apos;); } } } </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 不定詞 While ループ

合格したら 真実 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(&apos;infinitive while loop&apos;); } } } 

出力:

日付形式.形式
 infinitive while loop infinitive while loop infinitive while loop infinitive while loop infinitive while loop ctrl+c 

上記のコードでは、無限ループを終了するには Ctrl + C コマンドを入力する必要があります。