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