Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Sunday, December 2, 2007

How to Use the continue Statement in java



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) + ".
");
}
%>

No comments: