Если вы хотите сделать следующее с помощью JSTL Tag Libe, выполните следующие действия:
[Требование], если число больше 40 и меньше 50, тогда отображается «Двухзначное число, начинающееся с 4», в противном случае «Другие числа».
[Решения]
1. Please Add the JSTL tag lib on the top of the page.`
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>`
2. Please Write the following code
`
<c:choose>
<c:when test="${params.number >=40 && params.number <50}">
<p> Two digit number starting with 4. </p>
</c:when>
<c:otherwise>
<p> Other numbers. </p>
</c:otherwise>
</c:choose>`