距离c++if与else语句
时间: 2023-07-20 18:13:00 浏览: 78
在 C++ 中,if 和 else 语句通常一起使用,用于根据特定条件执行不同的代码块。if 语句用于指定条件,如果条件为 true,则执行 if 语句后面的代码块,否则跳过 if 语句后面的代码块。else 语句用于指定 if 语句条件不满足时要执行的代码块。
下面是一个简单的示例,演示如何使用 if 和 else 语句:
```
int x = 10;
if (x > 0) {
// 如果 x 大于 0,则执行此处的代码
std::cout << "x is positive" << std::endl;
} else {
// 如果 x 不大于 0,则执行此处的代码
std::cout << "x is non-positive" << std::endl;
}
```
在上面的示例中,我们首先定义了一个整数变量 x 并将其初始化为 10。然后,我们使用 if 语句来检查 x 是否大于 0。因为 x 大于 0,所以条件为 true,if 语句后面的代码块被执行,输出 "x is positive"。如果 x 不大于 0,则条件为 false,if 语句后面的代码块不会被执行,转而执行 else 语句后面的代码块,输出 "x is non-positive"。
阅读全文