c 语言if else用法例子
时间: 2024-10-23 10:12:50 浏览: 198
go语言if/else语句简单用法示例
C语言中的`if-else`结构用于条件判断,其基本语法如下:
```c
if (condition) {
// 如果condition为真,则执行这里的代码块
} else {
// 否则(即condition为假),执行这里的代码块
}
```
下面是一个简单的例子,展示了如何检查一个数字是否是正数:
```c
#include <stdio.h>
int main() {
int num = 5; // 可以替换为其他值
if (num > 0) {
printf("Number is positive.\n");
} else {
printf("Number is not positive (it's either zero or negative).\n");
}
return 0;
}
```
在这个例子中,如果`num`大于零,就会打印"Number is positive.";否则会打印"Number is not positive (it's either zero or negative.)"。
阅读全文