今天在整理文档的时候,发现以前的文件,故而整理好像没什么大用处,但是又不得不深谙其道^_^!!!
1 2 3 4 5 6 7 8 9 10 | 例一: <?php echo '<table border=1>'; for($a = 1;$a <= 9;$a++){ echo '<tr>'; for($b = 1;$b <= $a;$b++){ echo "<td>{$b}*{$a}=".($a*$b)."</td>"; } } echo '</table>'; |
图一:
1 2 3 4 5 6 7 8 9 10 | 例二: <?php echo '<table border=1>'; for($a = 9;$a >= 1;$a--){ echo '<tr>'; for($b = 1;$b <= $a;$b++){ echo "<td>{$b}*{$a}=".($a*$b)."</td>"; } } echo '</table>'; |
图二:
1 2 3 4 5 6 7 8 9 10 11 12 13 | 例三: <?php echo '<table border=1>'; for($a = 1;$a <= 9;$a++){ echo "<tr>"; for($c = 0;$c < 9 - $a;$c++){ echo "<td> </td>"; } for($b = $a;$b >= 1;$b --){ echo "<td>{$b}*{$a}=".($a*$b)."</td>"; } } echo '</table>'; |
图三:
1 2 3 4 5 6 7 8 9 10 11 12 13 | 例四: <?php echo '<table border=1>'; for($a = 9;$a >= 1;$a--){ echo '<tr>'; for($c = 0;$c < 9 - $a;$c++){ echo "<td> </td>"; } for($b = $a;$b >= 1;$b--){ echo "<td>{$b}*{$a}=".($a*$b)."</td>"; } } echo '</table>'; |
图四:
不足之处望指正,欢迎交流~