בתכנות C#, ה אם הצהרה משמש לבדיקת המצב. ישנם סוגים שונים של הצהרות if ב-C#.
- אם הצהרה
- הצהרת if-else
- משפט אם מקונן
- אם-אחר-אם סולם
הצהרת C# IF
המשפט C# if בודק את התנאי. זה מבוצע אם התנאי הוא אמיתי.
dhl אומר מה
תחביר:
if(condition){ //code to be executed }
C# אם דוגמה
using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } }
תְפוּקָה:
It is even number
הצהרת C# IF-else
ההצהרה C# if-else גם בודקת את התנאי. זה מבצע את אם לחסום אם המצב נכון אחרת חסימה אחרת מוצא להורג.
ניב שינה
תחביר:
if(condition){ //code if condition is true }else{ //code if condition is false }
C# 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'); } } }
תְפוּקָה:
It is odd number
C# If-else דוגמה: עם קלט מהמשתמש
בדוגמה זו, אנו מקבלים קלט מהמשתמש המשתמש Console.ReadLine() שיטה. זה מחזיר מחרוזת. עבור ערך מספרי, עליך להמיר אותו ל-int באמצעות Convert.ToInt32() שיטה.
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'); } } }
תְפוּקָה:
משתנה משתנה java
Enter a number:11 It is odd number
תְפוּקָה:
Enter a number:12 It is even number
הצהרת C# IF-else-if ladder
המשפט C# if-else-if ladder מבצע תנאי אחד ממספר משפטים.
תחביר:
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# אם אחרת-אם דוגמה
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></=>
תְפוּקָה:
Enter a number to check grade:-2 wrong number=>