logo

C# if-else

У програмуванні на C# оператор if використовується для перевірки стану. У C# існують різні типи операторів if.

  • оператор if
  • оператор if-else
  • вкладений оператор if
  • якщо-інакше-якщо сходи

Інструкція C# IF

Інструкція C# if перевіряє умову. Він виконується, якщо умова виконується.

Синтаксис:

 if(condition){ //code to be executed } 
оператор if у java

Приклад 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 також перевіряє умову. Він виконує якщо заблокувати якщо умова вірна, інакше блокувати else виконується.

Синтаксис:

 if(condition){ //code if condition is true }else{ //code if condition is false } 
Оператор if-else C#

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 ladder виконує одну умову з кількох операторів.

Синтаксис:

 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