2. 运行截图
3.源代码
<?php $i=1; while ($i<=9) { $j=1; while ($j<=$i) { $chengji = $i*$j; echo("$i*$j=$chengji "); $j++; } $i++; echo "<br>"; }