例:
JSTL+EL:
for(int i=0;i<20;i++){
println(i);
}
JSTL+EL:
<c:forEach var="item" varStatus="status" begin="0" end="19">
${ status.index}
</c:forEach>