使用JSTL在页面中输出100以内的质数,不允许使用java代码,
1个回答
2015-07-09
展开全部
<c:forEach begin="2" end="100" varStatus="vs">
<c:set var="exitId" value="1"></c:set>
<c:forEach begin="2" end="${vs.index}" varStatus="vs2">
<c:if test="${vs.index%vs2.index==0&&vs.index!=vs2.index}">
<c:set var="exitId" value="0"></c:set>
</c:if>
<c:if test="${vs.index%vs2.index==0&&vs.index==vs2.index&&exitId==1 }">
<c:set var="exitId" value="1"></c:set>
${vs.index }
</c:if>
</c:forEach>
</c:forEach>
<c:set var="exitId" value="1"></c:set>
<c:forEach begin="2" end="${vs.index}" varStatus="vs2">
<c:if test="${vs.index%vs2.index==0&&vs.index!=vs2.index}">
<c:set var="exitId" value="0"></c:set>
</c:if>
<c:if test="${vs.index%vs2.index==0&&vs.index==vs2.index&&exitId==1 }">
<c:set var="exitId" value="1"></c:set>
${vs.index }
</c:if>
</c:forEach>
</c:forEach>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询