c语言包含if else语句和switch case语句for语句的例子注释
时间: 2023-10-17 15:14:55 浏览: 107
C语言 if else 语句详细讲解
5星 · 资源好评率100%
可以举一个简单的例子:
```c
#include <stdio.h>
int main() {
int num = 5;
if (num > 0) {
printf("The number is positive\n"); // if语句中的注释
} else {
printf("The number is non-positive\n"); // else语句中的注释
}
for (int i = 0; i < 3; i++) {
printf("Iteration number %d\n", i+1); // for语句中的注释
}
switch (num) {
case 1:
printf("The number is 1\n"); // switch case语句中的注释
break;
case 2:
printf("The number is 2\n");
break;
default:
printf("The number is neither 1 nor 2\n");
}
return 0;
}
```
其中,if语句和else语句是用来判断num是否为正数的,for语句用来循环输出语句,switch case语句用来根据num的值输出不同的结果。每个语句中的注释都用来描述该语句的作用。
阅读全文