Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Sunday, December 2, 2007

How to Use the while Loop in java



Using the while Loop



Using the while Loop


<%
int value = 5;

while (value > 0) {
out.println("The value is now " + value-- + ".
");
}
%>

No comments: