Fixed Loops
Fixed Loops
 Unlike humans, computers can do things over and over
and over again without making mistakes. Or complaining.
 In programming, we use a fixed loop to repeat a block of
code a set number of times.
 The process of repeating code is also known as iteration.
Fixed Loops
Fixed Loops
FOR Loop with increments
Although the default step count is 1, it is possible to use a
different step count
FOR Loop with increments
Although the default step count is 1, it is possible to use a
different step count

SDD Fixed Loops

  • 1.
  • 2.
    Fixed Loops  Unlikehumans, computers can do things over and over and over again without making mistakes. Or complaining.  In programming, we use a fixed loop to repeat a block of code a set number of times.  The process of repeating code is also known as iteration.
  • 3.
  • 4.
  • 5.
    FOR Loop withincrements Although the default step count is 1, it is possible to use a different step count
  • 6.
    FOR Loop withincrements Although the default step count is 1, it is possible to use a different step count