A C# programozásban a ha nyilatkozat állapot tesztelésére szolgál. A C#-ban többféle if utasítás létezik.
- ha nyilatkozat
- ha-más kijelentés
- beágyazott if utasítás
- ha-más-ha létra
C# IF nyilatkozat
A C# if utasítás teszteli a feltételt. Akkor kerül végrehajtásra, ha a feltétel igaz.
Szintaxis:
if(condition){ //code to be executed }
C# Ha Példa
using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } }
Kimenet:
It is even number
C# IF-else nyilatkozat
A C# if-else utasítás is teszteli a feltételt. Végrehajtja a ha blokk ha a feltétel egyébként igaz más blokk kivégzik.
Szintaxis:
if(condition){ //code if condition is true }else{ //code if condition is false }
C# If-else példa
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'); } } }
Kimenet:
It is odd number
C# If-else Példa: a felhasználó bemenetével
Ebben a példában a felhasználótól kapunk bemenetet Console.ReadLine() módszer. Stringet ad vissza. A numerikus értékhez konvertálnia kell int-re a segítségével Convert.ToInt32() módszer.
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'); } } }
Kimenet:
Enter a number:11 It is odd number
Kimenet:
Enter a number:12 It is even number
C# IF-else-if létra utasítás
A C# if-else-if ladder utasítás egy feltételt hajt végre több utasításból.
Szintaxis:
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 Példa
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></=>
Kimenet:
számozott ábécé
Enter a number to check grade:-2 wrong number=>