U C# programiranju, izjava if koristi se za testiranje stanja. Postoje različite vrste if naredbi u C#.
- izjava if
- izjava if-else
- ugniježđena izjava if
- ako-drugo-ako ljestve
C# IF izjava
C# if naredba testira uvjet. Izvršava se ako je uvjet istinit.
Sintaksa:
if(condition){ //code to be executed }
C# If Primjer
using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } }
Izlaz:
It is even number
C# IF-else iskaz
C# if-else naredba također testira uvjet. Izvršava ako blok ako je uvjet istinit inače inače blok se izvršava.
Sintaksa:
if(condition){ //code if condition is true }else{ //code if condition is false }
C# If-else primjer
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'); } } }
Izlaz:
It is odd number
C# If-else Primjer: s unosom korisnika
U ovom primjeru unos dobivamo od korisnika koji koristi Console.ReadLine() metoda. Vraća niz. Za numeričku vrijednost, trebate je pretvoriti u int pomoću Pretvori.UInt32() 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'); } } }
Izlaz:
Enter a number:11 It is odd number
Izlaz:
Enter a number:12 It is even number
C# IF-else-if ladder iskaz
C# if-else-if naredba ljestvice izvršava jedan uvjet iz više naredbi.
Sintaksa:
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 Primjer
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></=>
Izlaz:
Enter a number to check grade:-2 wrong number=>