logo

C# の if-else

C# プログラミングでは、 if ステートメント 状態をテストするために使用されます。 C# にはさまざまな種類の if ステートメントがあります。

  • if ステートメント
  • if-else ステートメント
  • ネストされた if ステートメント
  • if-else-if ラダー

C# IF ステートメント

C# の if ステートメントは条件をテストします。条件が true の場合に実行されます。

構文:

 if(condition){ //code to be executed } 
Javaのif文

C# の例

 using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } } 

出力:

 It is even number 

C# IF-else ステートメント

C# の if-else ステートメントでも条件をテストします。それは、 ブロックの場合 条件が true の場合、そうでない場合 それ以外のブロック が実行されます。

構文:

 if(condition){ //code if condition is true }else{ //code if condition is false } 
C# の if-else ステートメント

C# の If-else の例

 using System; public class IfExample { public static void Main(string[] args) { int num = 11; if (num % 2 == 0) { Console.WriteLine('It is even number'); } else { Console.WriteLine('It is odd number'); } } } 

出力:

 It is odd number 

C# If-else の例: ユーザーからの入力を使用

この例では、次を使用してユーザーから入力を取得しています。 Console.ReadLine() 方法。文字列を返します。数値の場合は、次を使用して int に変換する必要があります。 Convert.ToInt32() 方法。

 using System; public class IfExample { public static void Main(string[] args) { Console.WriteLine('Enter a number:'); int num = Convert.ToInt32(Console.ReadLine()); if (num % 2 == 0) { Console.WriteLine('It is even number'); } else { Console.WriteLine('It is odd number'); } } } 

出力:

 Enter a number:11 It is odd number 

出力:

 Enter a number:12 It is even number 

C# IF-else-if ラダー文

C# の if-else-if ラダー ステートメントは、複数のステートメントから 1 つの条件を実行します。

構文:

 if(condition1){ //code to be executed if condition1 is true }else if(condition2){ //code to be executed if condition2 is true } else if(condition3){ //code to be executed if condition3 is true } ... else{ //code to be executed if all the conditions are false } 
C# の if-else-if ステートメント

C# If else-if の例

 using System; public class IfExample { public static void Main(string[] args) { Console.WriteLine(&apos;Enter a number to check grade:&apos;); int num = Convert.ToInt32(Console.ReadLine()); if (num 100) { Console.WriteLine(&apos;wrong number&apos;); } else if(num &gt;= 0 &amp;&amp; num = 50 &amp;&amp; num = 60 &amp;&amp; num = 70 &amp;&amp; num = 80 &amp;&amp; num = 90 &amp;&amp; num <= 100) { console.writeline('a+ grade'); } < pre> <p>Output:</p> <pre> Enter a number to check grade:66 C Grade </pre> <p>Output:</p> <pre> Enter a number to check grade:-2 wrong number </pre></=>

出力:

 Enter a number to check grade:-2 wrong number