निर्णय लेने की संरचना के लिए प्रोग्रामर को प्रोग्राम द्वारा मूल्यांकन या परीक्षण के लिए एक या अधिक शर्तों को निर्दिष्ट करने की आवश्यकता होती है, साथ ही एक स्टेटमेंट या स्टेटमेंट को निष्पादित करने के लिए, यदि स्थिति को सही माना जाता है, और वैकल्पिक रूप से, अन्य स्टेटमेंट्स को निष्पादित किया जाना है यदि शर्त झूठा होना निर्धारित है।
C# में डिसीजन मेकिंग में if स्टेटमेंट, if-else स्टेटमेंट, स्विच स्टेटमेंट आदि शामिल हैं।
आइए C# में if स्टेटमेंट का एक उदाहरण देखें।
उदाहरण
using System; namespace Demo { class Program { static void Main(string[] args) { int x = 5; // if statement if (x < 20) { /* if condition is true then print the following */ Console.WriteLine("x is less than 20"); } Console.WriteLine("value of x is : {0}", x); Console.ReadLine(); } } }
आउटपुट
x is less than 20 value of x is : 5
आइए C# में if-else स्टेटमेंट का एक उदाहरण देखें। इसमें, यदि पहली शर्त गलत है, तो अन्य कथन की स्थिति की जाँच की जाएगी।
उदाहरण
using System; namespace Demo { class Program { static void Main(string[] args) { int x = 100; /* check the boolean condition */ if (x < 20) { /* if condition is true then print the following */ Console.WriteLine("x is less than 20"); } else { /* if condition is false then print the following */ Cohttps://tpcg.io/HoaKexnsole.WriteLine("x is not less than 20"); } Console.WriteLine("value of a is : {0}", x); Console.ReadLine(); } } }
आउटपुट
x is not less than 20 value of a is : 100