Nella programmazione C#, il se dichiarazione viene utilizzato per testare la condizione. Esistono vari tipi di istruzioni if in C#.
- se dichiarazione
- istruzione if-else
- istruzione if nidificata
- scala se-altro-se
Istruzione C# SE
L'istruzione C# if verifica la condizione. Viene eseguito se la condizione è vera.
Sintassi:
if(condition){ //code to be executed }
C# Se Esempio
using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } }
Produzione:
It is even number
Istruzione C# IF-else
Anche l'istruzione C# if-else verifica la condizione. Esegue il se bloccato se la condizione è vera altrimenti altrimenti blocca viene eseguito.
Sintassi:
if(condition){ //code if condition is true }else{ //code if condition is false }
C# Esempio 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'); } } }
Produzione:
It is odd number
C# If-else Esempio: con input dell'utente
In questo esempio, riceviamo input dall'utente utilizzando Console.ReadLine() metodo. Restituisce stringa. Per il valore numerico, è necessario convertirlo in int utilizzando Convert.ToInt32() metodo.
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'); } } }
Produzione:
Enter a number:11 It is odd number
Produzione:
Enter a number:12 It is even number
C# Istruzione IF-else-if ladder
L'istruzione ladder if-else-if C# esegue una condizione da più istruzioni.
Sintassi:
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# Se altrimenti-se Esempio
using System; public class IfExample { public static void Main(string[] args) { Console.WriteLine('Enter a number to check grade:'); int num = Convert.ToInt32(Console.ReadLine()); if (num 100) { Console.WriteLine('wrong number'); } else if(num >= 0 && num = 50 && num = 60 && num = 70 && num = 80 && num = 90 && 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></=>
Produzione:
Enter a number to check grade:-2 wrong number=>