Difference between revisions of "While Loops"

From CompSciWiki
Jump to: navigation, search
Line 1: Line 1:
'''While Loops'''
 
 
==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.

Revision as of 16:30, 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