Blogger Information
Blog 63
fans 2
comment 0
visits 163554
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP九九乘法表的四种实现方式
书声的博客
Original
3958 people have browsed it

PHP九九乘法表的四种实现方式

一、使用for循环打印九九乘法表:

<?php
    for($j=1; $j<=9; $j++) {
        for($i=1; $i<=$j; $i++) {
            echo "{$i}x{$j}=".($i*$j)." ";
        }
        echo "<br />";
    }

二、使用while循环打印九九乘法表二、使用while循环打印九九乘法表

<?php
    $j = 1;
    while($j<=9){
        $i = 1;
        while($i<=$j){
            echo "{$i}x{$j}=".($i*$j)." ";
            $i++;
        }
        echo "<br />";    
        $j++; 
   }

三、使用do while循环打印九九乘法表

<?php

    $j = 1;
    do {
        $i = 1;
        do {
            echo "{$i}x{$j}=".($i*$j)." ";
            $i++;
        } while($i<=$j);
        echo "<br />";
        $j++;
    } while($j<=9);

下面使用for循环以表格形式输出九九乘法表

角度一:(最普通的常规写法)

<?php
    echo "<table width='600' border='1'>";
    for($j=1;$j<=9;$j++){
        echo "<tr>";
        for($i=1;$i<=$j;$i++){
            echo "<td>{$i}*{$j}=".($i*$j)."</td>";
        }
        echo "</tr>";
    }
    echo "</table>";

角度二:(与常规写法成X轴对称)

<?php

    echo "<table width='600' border='1'>";
    for($j=9;$j>=1;$j--){
        echo "<tr>";
        for($i=1;$i<=$j;$i++){
            echo "<td>{$i}*{$j}=".($i*$j)."</td>";
        }
        echo "</tr>";
    }
    echo "</table>";

角度三:(与角度二成Y轴对称)

<?php

    echo "<table width='600' border='1'>";
    for($j=9;$j>=1;$j--){
        echo "<tr>";
        for($z=0;$z<9-$j;$z++){
            echo "<td> </td>";
        }
        for($i=1;$i<=$j;$i++){
            echo "<td>{$i}*{$j}=".($i*$j)."</td>";
        }
        echo "</tr>";
    }
    echo "</table>";

角度四:(与常规写法成Y轴对称)

<?php
    echo "<table width='600' border='1'>";
    for($j=1;$j<=9;$j++){
        echo "<tr>";
        for($z=0;$z<9-$j;$z++){
            echo "<td> </td>";
        }
        for($i=$j;$i>=1;$i--){
            echo "<td>{$i}*{$j}=".($i*$j)."</td>";
        }
        echo "</tr>";
    } 
    echo "</table>";

原文链接:原文链接



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
Author's latest blog post