< HTML>
Using the continue Statement
Using the continue Statement
<%
for(double i = 6; i >= -6; i--) {
if (i == 0) continue;
out.println("The reciprocal of " + i + " is " + (1 / i) + ".
");
}
%>