C # - istruzione if ... else

Un if l'istruzione può essere seguita da un opzionale else istruzione, che viene eseguita quando l'espressione booleana è falsa.

Sintassi

La sintassi di un file if...else istruzione in C # è -

if(boolean_expression) {
   /* statement(s) will execute if the boolean expression is true */
} else {
   /* statement(s) will execute if the boolean expression is false */
}

Se l'espressione booleana restituisce true, poi il if block di codice viene eseguito, altrimenti else block di codice viene eseguito.

Diagramma di flusso

Esempio

using System;

namespace DecisionMaking {
   class Program {
      static void Main(string[] args) {
         /* local variable definition */
         int a = 100;
         
         /* check the boolean condition */
         if (a < 20) {
            /* if condition is true then print the following */
            Console.WriteLine("a is less than 20");
         } else {
            /* if condition is false then print the following */
            Console.WriteLine("a is not less than 20");
         }
         Console.WriteLine("value of a is : {0}", a);
         Console.ReadLine();
      }
   }
}

Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:

a is not less than 20;
value of a is : 100

L'istruzione if ... else if ... else

Un if l'istruzione può essere seguita da un opzionale else if...else istruzione, che è molto utile per testare varie condizioni usando l'istruzione if ... else if.

Quando si usano le istruzioni if, else if, else ci sono pochi punti da tenere a mente.

  • Un if può avere zero o un altro e deve venire dopo qualsiasi altro se.

  • Un if può avere da zero a molti altri se e devono venire prima dell'altro.

  • Una volta che un altro se ha esito positivo, nessuno degli altri if o else rimanenti verrà testato.

Sintassi

La sintassi di un file if...else if...else istruzione in C # è -

if(boolean_expression 1) {
   /* Executes when the boolean expression 1 is true */
} 
else if( boolean_expression 2) {
   /* Executes when the boolean expression 2 is true */
} 
else if( boolean_expression 3) {
   /* Executes when the boolean expression 3 is true */
} else {
   /* executes when the none of the above condition is true */
}

Esempio

using System;

namespace DecisionMaking {
   class Program {
      static void Main(string[] args) {
         /* local variable definition */
         int a = 100;
         
         /* check the boolean condition */
         if (a == 10) {
            /* if condition is true then print the following */
            Console.WriteLine("Value of a is 10");
         } 
         else if (a == 20) {
            /* if else if condition is true */
            Console.WriteLine("Value of a is 20");
         } 
         else if (a == 30) {
            /* if else if condition is true  */
            Console.WriteLine("Value of a is 30");
         } else {
            /* if none of the conditions is true */
            Console.WriteLine("None of the values is matching");
         }
         Console.WriteLine("Exact value of a is: {0}", a);
         Console.ReadLine();
      }
   }
}

Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:

None of the values is matching
Exact value of a is: 100