编写一个程序使用break
语句退出无限循环。
实现代码示例
#include <stdio.h>
int main()
{
int count;
count = 0;
for(;;) // 无限循环
{
printf("%d, ",count);
count = count+1;
if( count > 15){
printf("大于 15,程序退出了");
break;
}
}
putchar('\n');
return(0);
}
执行上面示例代码,得到以下结果:
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 大于 15,程序退出了