时间:2021-07-01 10:21:17 帮助过:28人阅读
输出结果{$num}";
/* 循环结构
* 一、while循环
* while(表达式)
* {
* 循环体;//反复执行,直到表达式为假
* }
* 二、do-while循环
* 三、for循环
*
* 根据循环条件不同,有两种类型的循环
*
* 一种:计数循环 (一般使用for)
* 另一种:条件型循环 (一般使用 while do-while)
*
*
*
*/
//while的使用
/*$num=0;
while($num<100)
{
echo "
'.$i.' | ';
http://www.bkjia.com/PHPjc/323565.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/323565.htmlTechArticle 代码如下:?php /* 循环结构 * 一、while循环 * while(表达式) * { * 循环体;//反复执行,直到表达式为假 * } * 二、do-while循环 * 三、for循...