Difference between revisions of "While Loops"

From CompSciWiki
Jump to: navigation, search
(Test Condition)
m
Line 12: Line 12:
 
</pre>
 
</pre>
 
In this particular situation, the while loop will continue to iterate as long as the test condition evaluates to true
 
In this particular situation, the while loop will continue to iterate as long as the test condition evaluates to true
 
 
  
 
==Uses==
 
==Uses==

Revision as of 17:34, 4 March 2007

Introduction

The while loop is a special form of loop that will continue to repeat as long as the test condition evaluates to false.

Syntax

In java, the while loop takes the form of

while(test condition) {
   ...
   statements
   ...
}

In this particular situation, the while loop will continue to iterate as long as the test condition evaluates to true

Uses