echo \"<table border=\'1\'>\"; //表格for ($i=1;$i<=9;$i++){ //循环echo \"<tr>\"; //行for($j=1;$j<=$i;$j++){ //循环print_r(\"<td>\".$j.\"*\".$i.\"=\".$j*$i.\"</td>\"); //列}echo \"</tr>\";}echo \"</table>\";
PHP——两层循环输出九九乘法表,放入表格中显示
未经允许不得转载:爱站程序员基地 » PHP——两层循环输出九九乘法表,放入表格中显示