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