While Loop
Repeats a statement or group of statements while a given condition is true; can execute 0…n times
For loop
Allows you to efficiently write a loop that needs to execute a specific number of times; a valid implementation may contain only two semi-colons
do…while loop
is guaranteed to execute at least one time
Nested loops
One or more loops inside any other while, for, or do…while loop
Break
Terminates the loop or switch statement and transfers execution to the statement immediately following the loop or switch
Continue
Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating
Goto
Transfers control to the labeled statement