close

<body>
<table width="700" border="1">
<?php
    $i=1;
    while ($i<=9){
        $j=1;
        while ($j<=9){
            echo "$i * $j = ".$i * $j."<br>";
            $j++;
        }
        $i++;
        echo "<hr />";
    }

?>
</table

arrow
arrow
    文章標籤
    php
    全站熱搜

    陰界黑幫 發表在 痞客邦 留言(0) 人氣()