Sunday, 20 February 2011

The 3 Types Of Loop.

There are 3 types of loop:
  • For Loop
  • While Loop
  • Do-While Loop

For Loop - This is a Loop that 'Repeats a specified number of times'

While Loop - A while loop is 'A loop that repeats while some condition is satisfied', This loop tests the condition only at the begining of the loop.

Do-While Loop - This is a loop that 'repeats while some condition is satisfied', differs from a While Loop because a Do-While loop tests the condition at the end of the loop.

No comments:

Post a Comment