选择结构和循环结构程序设计,编写程序完成实例(代码加注释),包含、for语句、while语句及do while语句
时间: 2024-05-05 16:18:35 浏览: 71
c语言while、do-while、for语句_c语言循环结构程序设计方法_源码
5星 · 资源好评率100%
好的,我可以回答你关于编程的问题。以下是一个使用选择结构和循环结构的实例(含代码注释):
```
#include <stdio.h>
int main() {
int i;
// 选择结构 - if语句
printf("Please enter a number: ");
scanf("%d", &i);
if(i < 0) {
printf("The number is negative.\n"); // 如果 i 小于 0,则输出负数
}
else {
printf("The number is not negative.\n"); // 如果 i 大于等于 0,则输出非负数
}
// 循环结构 - for语句
printf("Counting from 1 to 10:\n");
for(i = 1; i <= 10; i++) {
printf("%d ", i); // 输出从 1 到 10 的数字
}
printf("\n");
// 循环结构 - while语句
i = 1; // 重置 i 的值
printf("Counting from 1 to 10 again:\n");
while(i <= 10) {
printf("%d ", i); // 输出从 1 到 10 的数字
i++; // i 自增
}
printf("\n");
// 循环结构 - do while语句
i = 1; // 重置 i 的值
printf("Counting from 1 to 10 one more time:\n");
do {
printf("%d ", i); // 输出从 1 到 10 的数字
i++; // i 自增
} while(i <= 10);
printf("\n");
return 0;
}
```
希望这个实例对你有帮助!请问还有其他问题吗?
阅读全文