日期:2014-05-17 浏览次数:20414 次
<?php //php打印出九九乘法表 for ($i=1; $i<10; $i++){ for ($j=1; $j<=$i; $j++){ echo $j*$i; echo ' '; } echo '<br />'; } ?>