Simple Loops in Java
For Loops:
for (starting value; ending condition; iteration)
A for loop has three basic sections:
For example:
for (int count=1; count<100; count++)
statement;
This loop will start at count = 1. As long as count is less than (<) 100 the loop will continue to function. Count will add one to itself: count++.
While Loops:
while (condition)
A while loop is simpler than a for loop. A while loop will continue to loop as long as the condition is true.
For example:
while (int x != 10)
statement;
This loop will continue as long as x is not ten. If x's value is ten when the loop tests the condition the loop will stop.
Example:
©2003 C. Whittington