Blogger Information
Blog 11
fans 0
comment 0
visits 6733
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
while和do~while循环语句的简单运用—8月23日作业1
v1per911的博客
Original
911 people have browsed it

使用while循环语句,由上到下递增输出99乘法表

实例1:正序输出九九乘法表

<?php
$i = 1; //循环中使用的变量,须提前在循环语句外声明,此次循环的乘法表是递增的,所以从1开始。
while ($i<10) {
    /* 用于测试外层循环是否生效,用这个代码也可以实现同样效果。
     * for ($j=1; $j<=$i; $j++){
        echo $i*$j;
    }*/
    $j = 1;
    while ($j<=$i) {
        echo $i.'X'.$j.'='.$i*$j.'  ';
        $j++;
    }
    $i++;
    echo '<br>';
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

使用do ~ while循环语句,由上到下递减输出99乘法表

实例

<?php
$a = 9;
do {
    $b = 1;
    do{
        echo $a.'X'.$b.'='.$a*$b.'  ';
        $b++;
    }while($b<=$a);
    $a--;
    echo '<br>';
}while($a>0);

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments