C# if語句
if語句包含一個布爾表達式後跟一個或多個語句。
語法
if語句在C#中的語法是:
if(boolean_expression) { /* statement(s) will execute if the boolean expression is true */ }
如果if語句裡的布爾表達式的值為真,那麼代碼塊將被執行。如果if語句的結束(右大括號後)布爾表達式的值為false,那麼第一代碼組會被執行。
流程圖:
例子:
using System; namespace DecisionMaking { class Program { static void Main(string[] args) { /* local variable definition */ int a = 10; /* check the boolean condition using if statement */ if (a < 20) { /* if condition is true then print the following */ Console.WriteLine("a is less than 20"); } Console.WriteLine("value of a is : {0}", a); Console.ReadLine(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
a is less than 20; value of a is : 10