< HTML> Using Logical Operators Using Logical Operators <% int temperature = 70; if (temperature < 90 && temperature > 60) { out.println("Picnic time!"); } %>