美文网首页PHP
PHP 乘法口诀制作

PHP 乘法口诀制作

作者: 887d1fc86fe6 | 来源:发表于2020-04-24 15:14 被阅读0次
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <table border="1" width="800" height="400">
  <?php
    for ($i = 1; $i <= 9; $i++) {
     echo '<tr>';
     for ($k = 1; $k <= $i; $k++) {
       $s = $k * $i;
       echo "<td style='text-align: center'>$k * $i = $s</td>";
     }
     echo '</tr>';
    }
  ?>
  </table>
</body>
</html>
  • demo 效果:

相关文章

网友评论

    本文标题:PHP 乘法口诀制作

    本文链接:https://www.haomeiwen.com/subject/pqdfwhtx.html