কম্পিউটার

কিভাবে আমরা নেস্টেড ইফ স্টেটমেন্ট C# এ ব্যবহার করব?


একটি ইফ বা অন্য ইফ স্টেটমেন্টের ভিতরে আরেকটি 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 */
   }
}

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

  1. কিভাবে Excel এ If এবং Nested If স্টেটমেন্ট ব্যবহার করবেন

  2. কিভাবে ব্যবহার করবেন যদি জাভাতে... অন্যথায় বিবৃতি

  3. জাভাস্ক্রিপ্টে লুপ থাকাকালীন নেস্টেড কীভাবে ব্যবহার করবেন?

  4. অ্যান্ড্রয়েড লিস্টভিউতে নেস্টেড অ্যারে কীভাবে ব্যবহার করবেন?