Якщо ви хочете зробити наступне за допомогою 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>`