C# else 语句


else 语句

使用else语句指定条件满足时要执行的代码块False

语法

if (condition)
{
  // block of code to be executed if the condition is True
} 
else 
{
  // block of code to be executed if the condition is False
}

示例

int time = 20;
if (time < 18) 
{
  Console.WriteLine("Good day.");
} 
else 
{
  Console.WriteLine("Good evening.");
}
// Outputs "Good evening."

亲自试一试 »

示例解释

在上面的例子中,时间(20)大于18,所以条件是False。正因为如此,我们继续else条件并打印到屏幕"Good evening"。如果时间小于18,程序将打印"Good day"。