달리는 자동차

[PHP]for문과 while문을 이용한 구구단 표 출력하기 본문

PHP/독학

[PHP]for문과 while문을 이용한 구구단 표 출력하기

@또또 2020. 8. 12. 19:03

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<table boder="1">
<?php
         $b=1;
 while($b<=9)
 {
     $c = 2 * $b;
      print "<tr><td>2 X $b = $c</td></tr>";
     $b++;
 }
?>
</table>
</body>
</html>

--------------------------------------------------------------------

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>2단 구구단표</title>
</head>
<body>
<table boder="1">
<?php
//          $b=1;                    while문 변수선언
 for($b=1; $b<=9; $b++)              //while($b<=9)
 {
     $c = 2 * $b;
      print "<tr><td>2 X $b = $c</td></tr>";
//      $b++;
 }
?>
</table>
</body>
</html>

'PHP > 독학' 카테고리의 다른 글

쿠키  (0) 2020.08.16
함수의 이해  (0) 2020.08.16
++$a 와 $a++의 차이  (0) 2020.08.10
상수  (0) 2020.08.08
4. PHP변수와 배열  (0) 2020.08.05
Comments