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