c:forEach 能递减迭代吗?该怎么解决

c:forEach 能递减迭代吗?HTML codec:forEach begin1 end10 step1 vari${i}/c:forEach我想

c:forEach 能递减迭代吗?

HTML code
<c:forEach begin="1" end="10" step="1" var="i">${i}</c:forEach>

我想要的效果是begin='10' end='1'
实现递减
能做到吗?

[解决办法]
这样不就递减了

${10-i}