WEB/JSP

[JSP] 구구단

다콩잉 2022. 9. 19. 12:05

 

 

 

gugu.jsp

<%--
  Created by IntelliJ IDEA.
  User: UserK
  Date: 2022-09-19
  Time: 오전 11:57
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
  <title>Gugu</title>
</head>
<body>
<h1 style="text-align: center">구구단</h1>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
  <tr style="text-align: center">
    <td></td>
    <%
      for(int i = 2; i < 10; i++) {
    %>
      <td><%=i%>단</td>
    <%
      }
    %>
  </tr>
    <%
      for(int i = 1; i < 10; i++){
    %>
  <tr>
      <td><%=i%></td>
    <%
      for (int j = 2; j < 10; j++) {
    %>
      <td style="text-align: center"><%=j%> X <%=i%> = <%=j*i%></td>
    <%
      }
    %>
  </tr>
    <%
      }
    %>
</body>
</html>

 

728x90