Na programação C#, o declaração if é usado para testar a condição. Existem vários tipos de instruções if em C#.
- declaração if
- instrução if-else
- instrução if aninhada
- escada if-else-if
Instrução C# SE
A instrução if do C# testa a condição. É executado se a condição for verdadeira.
Sintaxe:
if(condition){ //code to be executed }
C# se exemplo
using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } }
Saída:
It is even number
Instrução C# IF-else
A instrução if-else do C# também testa a condição. Ele executa o se bloquear se a condição for verdadeira caso contrário senão bloquear É executado.
Sintaxe:
if(condition){ //code if condition is true }else{ //code if condition is false }
Exemplo If-else em C#
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'); } } }
Saída:
It is odd number
Exemplo C# If-else: com entrada do usuário
Neste exemplo, estamos obtendo informações do usuário usando Console.ReadLine() método. Ele retorna string. Para valor numérico, você precisa convertê-lo em int usando Convert.ToInt32() método.
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'); } } }
Saída:
Enter a number:11 It is odd number
Saída:
Enter a number:12 It is even number
Instrução escada C# IF-else-if
A instrução ladder if-else-if do C# executa uma condição de várias instruções.
Sintaxe:
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 Exemplo
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></=>
Saída:
Enter a number to check grade:-2 wrong number=>