Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

เราจะใช้คำสั่ง nested if ใน C # ได้อย่างไร


ใช้หนึ่งคำสั่ง if หรือ else if ภายในคำสั่ง if หรือ else if อื่น ไวยากรณ์สำหรับคำสั่งซ้อน if เป็นดังนี้ -

if( boolean_expression 1) {
   /* Executes when the boolean expression 1 is true */
   if(boolean_expression 2) {
      /* Executes when the boolean expression 2 is true */
   }
}

ต่อไปนี้คือตัวอย่างการแสดงการใช้คำสั่ง nested if ใน C# ในที่นี้ เรามีคำสั่ง if สองอันที่ตรวจสอบสองเงื่อนไข

if (a == 5) {
   /* if condition is true then check the following */
   if (b == 10) {
      /* if condition is true then print the following */
      Console.WriteLine("Value of a is 5 and b is 10");
   }
}

นี่คือตัวอย่างที่สมบูรณ์

ตัวอย่าง

using System;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         //* local variable definition */
         int a = 5;
         int b = 10;
         /* check the boolean condition */
         if (a == 5) {
            /* if condition is true then check the following */
            if (b == 10) {
               /* if condition is true then print the following */
               Console.WriteLine("Value of a is 5 and b is 10");
            }
         }
         Console.WriteLine("Exact value of a is : {0}", a);
         Console.WriteLine("Exact value of b is : {0}", b);
         Console.ReadLine();
      }
   }
}

ผลลัพธ์

Value of a is 5 and b is 10
Exact value of a is : 5
Exact value of b is : 10