logo

C# if-else

C# 프로그래밍에서는 if 문 상태를 테스트하는 데 사용됩니다. C#에는 다양한 유형의 if 문이 있습니다.

  • if 문
  • if-else 문
  • 중첩된 if 문
  • if-else-if 사다리

C# IF 문

C# if 문은 조건을 테스트합니다. 조건이 참일 경우 실행됩니다.

자바 인덱스

통사론:

 if(condition){ //code to be executed } 
자바의 if 문

C# If 예

 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 문도 조건을 테스트합니다. 이는 다음을 실행합니다. 차단하면 조건이 참이면 그렇지 않으면 다른 블록 실행됩니다.

자바 수학 무작위

통사론:

 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'); } } } 

산출:

C# 스위치
 Enter a number:11 It is odd number 

산출:

 Enter a number:12 It is even number 

C# IF-else-if 래더 문

C# if-else-if 래더 문은 여러 문에서 하나의 조건을 실행합니다.

통사론:

 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