logo

C # إذا كان آخر

في برمجة C#، إذا بيان يستخدم لاختبار الحالة. هناك أنواع مختلفة من عبارات if في لغة C#.

  • إذا بيان
  • بيان إذا كان آخر
  • متداخلة إذا البيان
  • إذا-إلا-إذا سلم

بيان C#IF

بيان C# if يختبر الحالة. يتم تنفيذه إذا كان الشرط صحيحا.

بناء الجملة:

 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# إذا كان آخر

بيان C# if-else يختبر الحالة أيضًا. يقوم بتنفيذ إذا كتلة إذا كان الشرط صحيحا خلاف ذلك كتلة أخرى يتم تنفيذ.

بناء الجملة:

 if(condition){ //code if condition is true }else{ //code if condition is false } 
بيان C # إذا كان آخر

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'); } } } 

انتاج:

 It is odd number 

C# إذا كان مثال آخر: مع إدخال من المستخدم

في هذا المثال، نحصل على مدخلات من المستخدم باستخدام Console.ReadLine() طريقة. تقوم بإرجاع السلسلة. بالنسبة للقيمة الرقمية، تحتاج إلى تحويلها إلى int باستخدام تحويل.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'); } } } 

انتاج:

 Enter a number:11 It is odd number 

انتاج:

 Enter a number:12 It is even number 

بيان سلم C# IF-else-if

تنفذ عبارة سلم C# if-else-if شرطًا واحدًا من عبارات متعددة.

بناء الجملة:

 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

C# إذا كان آخر-إذا مثال

 using System; public class IfExample { public static void Main(string[] args) { Console.WriteLine(&apos;Enter a number to check grade:&apos;); int num = Convert.ToInt32(Console.ReadLine()); if (num 100) { Console.WriteLine(&apos;wrong number&apos;); } else if(num &gt;= 0 &amp;&amp; num = 50 &amp;&amp; num = 60 &amp;&amp; num = 70 &amp;&amp; num = 80 &amp;&amp; num = 90 &amp;&amp; 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