摘要:<?PHP//九九乘法表echo"<table border='1px' cellpadding=0 cellspacing=0 width='500px' height='400px'>";for($i=1;$i<=9;$i++){echo"<tr>"; &nb
<?PHP
//九九乘法表
echo"<table border='1px' cellpadding=0 cellspacing=0 width='500px' height='400px'>";
for($i=1;$i<=9;$i++)
{echo"<tr>";
for($j=1;$j<=9;$j++)
{echo"<td>";
if($j<=$i){echo $j."*".$i."=".$j*$i;}
echo"</td>";}
echo "</tr>";}
echo"</table>";
?>
批改老師:查無此人批改時間:2019-03-18 09:07:28
老師總結(jié):這個課好像是我講的,我沒布置過乘法表。難道你不會json數(shù)據(jù)嗎?小程序,app都使用json,如果不學(xué),找工作的范圍太狹小。