Difference between revisions of "While Loops"

From CompSciWiki
Jump to: navigation, search
Line 1: Line 1:
 
==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|test condition]] evaluates to false.
 
==Syntax==
 
==Syntax==
  

Revision as of 16:31, 20 February 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

Test Condition

Uses