The loop structure

The loop or iteration structure can be described as shown in the pseudocode in Figure 3.

Enter
  Test a condition for true or false
  Exit on false
  On true
    Perform one or more actions in sequence
    Go back and test the condition again
    
Figure 3

As before, there is only one entry point and one exit point.