< HTML>
Using the if Statement
Using the if Statement
<%
int loopIndex;
for (loopIndex = 1; loopIndex <= 10; loopIndex++) {
out.println("This is iteration number "
+ loopIndex + "
");
}
%>