[JSP 예제] JSTL 을 이용한 구구단 출력 :: 소림사의 홍반장!

[JSP 예제] JSTL 을 이용한 구구단 출력

2012. 9. 19. 14:13 - 삘쏘굿

실행 소스

 

<?xml version="1.0" encoding="EUC-KR" ?>

<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<% String cp = request.getContextPath(); %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" />

<title>JSTL 2</title>

</head>

<body>

 

<!-- JSTL을 이용한 구구단 -->

<table align="center" border="1">

<c:forEach var="i" begin="1" end="9">

        <tr>

        <c:forEach var="j" begin="2" end="9">

               <c:if test="${j%2==1 }">

                       <td>${j } x ${i } = ${i*j }</td>

               </c:if>

        </c:forEach>

        </tr>

</c:forEach>

</table>

 

 

 

</body>

</html>



실행 결과

 

다른 카테고리의 글 목록

Dev. 웹/HTML.JSP 카테고리의 포스트를 톺아봅니다