c++中if else语句举例
时间: 2024-04-02 11:29:34 浏览: 98
C语言 if else 语句详细讲解
5星 · 资源好评率100%
在C++中,if-else语句是一种条件语句,用于根据给定的条件执行不同的代码块。下面是一个if-else语句的示例:
```cpp
#include <iostream>
int main() {
int num = 10;
if (num > 0) {
std::cout << "Number is positive." << std::endl;
} else {
std::cout << "Number is negative or zero." << std::endl;
}
return 0;
}
```
在上面的示例中,我们定义了一个整数变量`num`并将其初始化为10。然后,我们使用if-else语句来检查`num`的值。如果`num`大于0,则打印"Number is positive.";否则,打印"Number is negative or zero."。
阅读全文