-
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'WEB > JSP' 카테고리의 다른 글
[JSP] 간단한 쇼핑몰 장바구니 (2) 2022.09.20 [JSP] JSP forward (0) 2022.09.19 [JSP] 4가지 Scope (0) 2022.09.19 [JSP] Error 페이지 만들기 (1) 2022.09.19 [JSP] HttpServlet (0) 2022.09.16