Using the while Loop Using the while Loop <% int value = 5; while (value > 0) { out.println("The value is now " + value-- + "."); } %>