位置:首頁 > 高級語言 > C#教學 > C# if...else語句

C# if...else語句

if 語句可以跟著一個可選的else語句,當if布爾表達式為假(false)時,else塊被執行。

語法:

一個if... else語句在C#中的語法是:

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

如果布爾表達式的值為true,那麼if代碼塊將被執行,否則else代碼塊將被執行。

流程圖:

C# if...else statement

例子:

using System;

namespace DecisionMaking
{
    
    class Program
    {
        static void Main(string[] args)
        {

            /* local variable definition */
            int a = 100;

            /* check the boolean condition */
            if (a < 20)
            {
                /* if condition is true then print the following */
                Console.WriteLine("a is less than 20");
            }
            else
            {
                /* if condition is false then print the following */
                Console.WriteLine("a is not less than 20");
            }
            Console.WriteLine("value of a is : {0}", a);
            Console.ReadLine();
        }
    }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

a is not less than 20;
value of a is : 100

if...else if...else 語句

if語句可以跟著一個可選的else if ... else語句,這是非常有用的使用單個 if...else if 語句測試各種條件。

當使用 if , else if , else 語句有幾點要牢記。

  • if可以有零或一個else,它必須跟在else if之後。

  • 一個 if 可以有零到許多else if,並且它們必須在else之前。

  • 一旦一個 else if 成功,剩餘的 else if 或 else 將不會被測試。

語法:

在C#中的 if...else if...else 語句的語法如下:

if(boolean_expression 1)
{
   /* Executes when the boolean expression 1 is true */
}
else if( boolean_expression 2)
{
   /* Executes when the boolean expression 2 is true */
}
else if( boolean_expression 3)
{
   /* Executes when the boolean expression 3 is true */
}
else 
{
   /* executes when the none of the above condition is true */
}

例子:

using System;

namespace DecisionMaking
{
    
    class Program
    {
        static void Main(string[] args)
        {

            /* local variable definition */
            int a = 100;

            /* check the boolean condition */
            if (a == 10)
            {
                /* if condition is true then print the following */
                Console.WriteLine("Value of a is 10");
            }
            else if (a == 20)
            {
                /* if else if condition is true */
                Console.WriteLine("Value of a is 20");
            }
            else if (a == 30)
            {
                /* if else if condition is true  */
                Console.WriteLine("Value of a is 30");
            }
            else
            {
                /* if none of the conditions is true */
                Console.WriteLine("None of the values is matching");
            }
            Console.WriteLine("Exact value of a is: {0}", a);
            Console.ReadLine();
        }
    }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

None of the values is matching
Exact value of a is: 100