使用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"。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!