JSP

구구단 만들기

jackypark 2022. 9. 19. 12:08
<%--
  Created by IntelliJ IDEA.
  User: Jacky Park Jong Hyun
  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>구구단</title>
</head>
<body>
    <table border="1" cellspacing="0" cellpadding="0" width="100%">
        <tr>
            <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>
                <%=j%>*<%=i%>=<%=i*j%>
            </td>
            <% } %>
        </tr>
        <% } %>
    </table>

</body>
</html>