Java の制御ステートメントは、Java のあるステートメントから別のステートメントへの制御の流れを決定するのに役立つステートメントです。 Java の制御ステートメントには多くの種類があります。この記事では、いくつかの例とともに、制御ステートメントのさまざまな側面を観察します。さまざまな種類の制御ステートメントは次のとおりです。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
意思決定ステートメント:
繰り返し/ループステートメント:
ジャンプステートメント:
Java でフロー制御文として使用される上記の文は、意思決定文、繰り返しまたはループ文、ジャンプ文に分類されます。
意思決定ステートメントでは、if-else ステートメント、ネストされた if-else ステートメント、および Switch case ステートメントについて説明します。また、そのようなステートメントの有効性と実行を示すコーディング例とサンプル出力も確認します。
if-else ステートメントは条件付きで機能します。構文は次のとおりです:
構文:
if(condition) Statement 1 else Statement 2
例:
最初の if-else の例では、ユーザーが入力した数値が 100 より大きいかどうかを確認します。数値が 100 より大きい場合、出力はそれに応じて表示されます。
コード:
import java.io.*; public class Example1 { public static void main(String args[])throws IOException { BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); System.out.println("ENTER A NUMBER"); int n= Integer.parseInt(br.readLine()); if (n>100) System.out.println("NUMBER ENTERED IS GREATER THAN 100"); else System.out.println("NUMBER ENTERED IS LESS THAN 100"); } }
出力:
次のプログラムでは、2 つの数値を入力します。数値として 250 を入力すると、プログラムはそれが 100 より大きいことを示し、数値として 65 を入力すると、プログラムは数値が 100 未満であることを示します。
ネストされた if-else ステートメントには複数の if 条件があり、最後に print ステートメントがあります。構文は次のとおりです:
構文:
if (condition1) if(condition2) if (condition3) Statement 1
例:
ネストされた if ステートメントでは、2 つまたは 3 つの if-else ステートメントを使用して条件を確認し、最終的に結論に達します。さらに、数値が 200 を超えているかどうかを確認します。それより大きい場合は、200 より大きいと出力されます。
コード:
import java.io.*; public class Example2 { public static void main(String args[])throws IOException { BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); System.out.println("ENTER A NUMBER"); int n= Integer.parseInt(br.readLine()); if (n>100) { if(n>200) System.out.println("NUMBER ENTERED IS GREATER THAN 200"); } } }
出力:
200 より大きい両方の数値を入力すると、両方の数値が 200 より大きいという正しい出力が見つかります。
スイッチケースには複数のケースがあり、その中から 1 つが選択されます。構文は次のとおりです:
構文:
switch(Variable) case 1: case 2: case 3: case n:
例:
この例では、数値を入力すると、プログラムはユーザーが返した数値を返します。これは、BlueJ プログラミング インターフェイスで実行される switch case ステートメントの簡単な例です。
コード:
import java.io.*; public class Example3 { public static void main(String args[])throws IOException { BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); System.out.println("ENTER A NUMBER BETWEEN 1 TO 5"); int n= Integer.parseInt(br.readLine()); switch(n) { case 1: System.out.println("NUMBER ENTERED IS 1"); break; case 2: System.out.println("NUMBER ENTERED IS 2"); break; case 3: System.out.println("NUMBER ENTERED IS 3"); break; case 4: System.out.println("NUMBER ENTERED IS 4"); break; case 5: System.out.println("NUMBER ENTERED IS 5"); break; } } }
出力:
上記のコードでは、数値を 4 と入力すると、プログラムは入力された数値が 4 であることを返します。
以下は Java の繰り返し/ループ句です:
for ループでは、ユーザーが初期化した回数だけループが続きます。構文は次のとおりです。
構文:
for(initialization, condition, update) Statement 1
例:
for ループの例では、3 から 10 までの奇数を出力します。それぞれのプログラムに for ループを使用します。
コード:
import java.io.*; public class Example4 { public static void main(String args[])throws IOException { System.out.println("Odd numbers from 3 to 10 are as follows"); for(int i=3; i<10; i+=2) { System.out.println(i); } } }
出力:
上記のプログラムでは、3 から 10 までの奇数が表示され、出力される数字は 3、5、7、9 です。
while ループでは、条件が true の間ステートメントが実行されます。構文は次のとおりです:
構文:
while(Condition) Statement 1
例:
while ループを使用して、数値の逆を見つけます。このプログラムは堅牢で、あらゆる整数の逆数を見つけることができます。
コード:
import java.io.*; public class Example5 { public static void main(String args[])throws IOException { BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); System.out.println("ENTER A NUMBER"); int n= Integer.parseInt(br.readLine()); int digit, rev=0; while(n>0) { digit= n%10; rev= (rev*10) +digit; n=n/10; } System.out.println("Reverse number is " +rev); } }
Output:
In the above program, we find the reverse of a particular number. The number entered is 635, and the reverse of the number is 536, as displayed on the output screen.
The jumping statements in java are explained below.
There can be in the for loop in the break statement while loop or in switch case. Following is the syntax.
Syntax:
for(Statements) break; while(Statements) break;
Example:
In this example, we will see a menu-driven program, and we see the break statement’s application.
Code:
import java.io.*; public class Example6 { public static void main(String args[])throws IOException { BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); System.out.println("ENTER A NUMBER BETWEEN 1 TO 5"); int n= Integer.parseInt(br.readLine()); switch(n) { case 1: System.out.println("NUMBER ENTERED IS 1"); break; case 2: System.out.println("NUMBER ENTERED IS 2"); break; case 3: System.out.println("NUMBER ENTERED IS 3"); break; case 4: System.out.println("NUMBER ENTERED IS 4"); break; case 5: System.out.println("NUMBER ENTERED IS 5"); break; default: System.out.println("Number entered is not between 1 to 5"); break; } } }
Output:
The above code is very similar to the code used in the switch case statements. The break statement is generally used in the switch case statement. The break statement is also used in the if-else condition where the if-else statements need to be terminated. The above program asks for the number entered between 1 to 5. If the number is not between 1 to 5, then there is a default print that the number entered is not between 1 to 5. In the above case, we enter the number as 65, and it prints accordingly that the number entered is not between 1 to 5.
In this article, we come across the control statements in Java that are present. We take a look at the Looping statements, the Conditional statements, and others that are present. We also look at the programming aspects of the statements and how the statements are used inside the code. Control statements are quite used in Java, and they are present in every other programming language. They are used significantly throughout all programs for smooth execution.
以上がJavaの制御文の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。