C# if語句

2019-10-16 23:17:18

if語句由一個布林表示式,後跟一個或多個語句組成。

語法

C# 中if語句的語法是:

if(boolean_expression)
{
   /* statement(s) will execute if the boolean expression is true */
}

如果布林表示式(boolean_expression)求值計算為true,則執行if語句中的程式碼塊。 如果布林表示式(boolean_expression)求值計算結果為false,則執行if語句結束後的第一組程式碼(在閉合大括號之後)。

流程圖

例子

using System;
namespace DecisionMaking
{
   class Program
   {
      static void Main(string[] args)
      {
         /* local variable definition */
         int a = 1;
         /* check the boolean condition using if statement */
         if (a < 10)
         {
            /* if condition is true then print the following */
            Console.WriteLine("a is less than 10");
         }
         Console.WriteLine("value of a is : {0}", a);
         Console.ReadLine();
      }
   }
}

當編譯和執行上述程式碼時,會產生以下結果:

a is less than 10;
value of a is : 1