If you want to repeat several instructions in a procedure, you can use a loop. Loops often are used in programming because they condense many lines of instructions into a group that can be run more than once. Loops make your procedures more concise, and with a loop, you can continue asking a user for input until the correct answer is given.
With loops, you can keep adding or subtracting numbers until you want to stop. You can define how many times you want a procedure to handle an operation. You will see how to use simple loops to repeat instructions in a procedure.
The two types of loops you may find useful are repetitive loopsReference and conditional loops.Reference Loops begin with a DO instruction and end with the END instruction. The following is a list of topics in this section:
DO num loopReference