C语言chap5(循环结构)
- 1. 概述 重复执行某个程序段称为循环。在C中可用如下语句实现循环: 1.用goto语句和 if 语句构成循环; 2.用while语句; 3.用do~while语句;
C语言chap5(循环结构)