Difference between revisions of "Repetition - Iteration"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "Repetition is the use of a for loop to execute one piece of code over and over. There are multiple ways to create a for loop though. These are: * while uses one condition that...")
(No difference)

Revision as of 10:54, 15 December 2016

Repetition is the use of a for loop to execute one piece of code over and over. There are multiple ways to create a for loop though. These are:

  • while uses one condition that which if met, will repeat the code.
1  while (true)
2                 {
3                    x ++
4                 }