logo

C# if-else

W programowaniu w C#, jeśli stwierdzenie służy do testowania warunku. W języku C# istnieje wiele typów instrukcji if.

  • jeśli stwierdzenie
  • instrukcja if-else
  • zagnieżdżona instrukcja if
  • drabina „jeśli-jeszcze-jeśli”.

Instrukcja C# IF

Instrukcja C# if testuje warunek. Jest wykonywana, jeśli warunek jest prawdziwy.

Składnia:

 if(condition){ //code to be executed } 
instrukcja if w Javie

C# Jeśli przykład

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

Wyjście:

format ciągu
 It is even number 

Instrukcja C# IF-else

Instrukcja C# if-else również testuje warunek. Wykonuje jeśli blok jeśli warunek jest prawdziwy, w przeciwnym razie inaczej zablokuj jest wykonywany.

Składnia:

 if(condition){ //code if condition is true }else{ //code if condition is false } 
Instrukcja C# if-else

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

Wyjście:

liczba sql jest odrębna
 It is odd number 

Przykład C# If-else: z danymi wejściowymi od użytkownika

W tym przykładzie otrzymujemy dane wejściowe od użytkownika używającego Konsola.ReadLine() metoda. Zwraca ciąg. W przypadku wartości liczbowej należy przekonwertować ją na int za pomocą Konwertuj.ToInt32() metoda.

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

Wyjście:

 Enter a number:11 It is odd number 

Wyjście:

 Enter a number:12 It is even number 

Instrukcja drabinkowa C# IF-else-if

Instrukcja drabinkowa języka C# if-else-if wykonuje jeden warunek z wielu instrukcji.

Składnia:

 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 } 
Instrukcja C# if-else-if

C# Jeśli inaczej-jeśli Przykład

 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></=>

Wyjście:

 Enter a number to check grade:-2 wrong number