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) {
  cout << "Good day.";
} else {
  cout << "Good evening.";
}
// Outputs "Good evening."
亲自试一试 »

示例解释

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