C#-ohjelmoinnissa jos lausunto käytetään kunnon testaamiseen. C#:ssa on erilaisia if-lauseita.
- jos lausunto
- jos-muu lausunto
- sisäkkäinen if -lause
- jos-muuten-jos tikkaat
C# IF-lausunto
C# if-lause testaa ehdon. Se suoritetaan, jos ehto on tosi.
Syntaksi:
if(condition){ //code to be executed }
C# If Esimerkki
using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } }
Lähtö:
It is even number
C# IF-else lausunto
C# if-else -käsky testaa myös ehdon. Se toteuttaa jos esto jos ehto on muuten totta muu lohko teloitetaan.
Syntaksi:
if(condition){ //code if condition is true }else{ //code if condition is false }
C# If-else Esimerkki
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'); } } }
Lähtö:
It is odd number
C# If-else Esimerkki: käyttäjän syötteellä
Tässä esimerkissä saamme syötteen käyttäjältä, joka käyttää Console.ReadLine() menetelmä. Se palauttaa merkkijonon. Numeerista arvoa varten sinun on muutettava se int:ksi käyttäen Convert.ToInt32() menetelmä.
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'); } } }
Lähtö:
Enter a number:11 It is odd number
Lähtö:
Enter a number:12 It is even number
C# IF-else-if tikkaat
C# if-else-if ladder -lause suorittaa yhden ehdon useista käskyistä.
Syntaksi:
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 Esimerkki
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></=>
Lähtö:
Enter a number to check grade:-2 wrong number=>