JSP를 사용하여 구구단을 만들어 보았습니다~~
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=EUC-KR"> <title>구구단</title> </head> <body> <center> <table border =1 > <!-- 첫 줄 --> <tr> <td bgcolor="#F0AEE0"> </td> <%for(int i=2; i<=9; i++){ %> <td bgcolor="#F0AEE0"><%= i+"단" %></td> <% } %> </tr> <!-- 바깥 for --> <% for(int i=1; i<=9; i++){ %> <tr> <td width="50" align="center" bgcolor="#F0AEE0"><%=i%></td> <!-- 안쪽 for --> <% for(int j=2; j<=9; j++){%> <td><%=j + "*" + i + "=" + j * i %></td> <%-- 안쪽 포문 닫음 --%><% } %> <!--바깥 포문 --> <!-- tr끝 --></tr> <!--바깥포문 닫음 --> <%} %> </table> </center> </body> </html> | cs |
아래는 출력 결과입니다.
'Back-End > JSP' 카테고리의 다른 글
[JSP] 유효성검사 회원가입 폼에서 파라미터 값들을 빈즈를 이용해서 넘기기 (0) | 2018.04.16 |
---|---|
[JSP] include액션을 이용한 화면 꾸미기 (template) (0) | 2018.04.16 |
[JSP] 쇼핑몰 장바구니 기능 (DB연동 x) (0) | 2018.04.13 |
[JSP] (get방식) sendRedirect로 Parameter값 넘기는 방법 (4) | 2018.04.12 |
[JSP] 영역(Scope)과 속성(Attribute) 개념정리 (2) | 2018.04.12 |