九九乘法表//行与列

Original 2019-03-16 15:50:07 386
abstract:<?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>";

?>

Correcting teacher:查无此人Correction time:2019-03-18 09:07:28
Teacher's summary:这个课好像是我讲的,我没布置过乘法表。难道你不会json数据吗?小程序,app都使用json,如果不学,找工作的范围太狭小。

Release Notes

Popular Entries