Difference between revisions of "While Loops"

From CompSciWiki
Jump to: navigation, search
(uses)
(Introduction)
Line 2: Line 2:
 
==Introduction==
 
==Introduction==
 
The while loop is a special form of loop that will continue to repeat as long as the test condition evaluates to false.
 
The while loop is a special form of loop that will continue to repeat as long as the test condition evaluates to false.
===Syntax===
+
==Syntax==
  
  

Revision as of 16:18, 20 February 2007

While Loops

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

Test Condition

Uses