Ciklus szervezés

Számláló ciklus:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
  <head>
    <title>JSTL Számláló</title>
  </head>
  <body bgcolor="#FFFFcc">
    <h1>For Loop JSTL-ben</h1>
    <c:forEach var="i" begin="1" end="20" step="1" varStatus ="status">
    <c:if test="${status.index == 1}">this is true</c:if>
    <c:out value="${i}" /> 
    </c:forEach>
  </body>
</html>