for (For...Next) - fixed condition, loops for a fixed number of variables
do while (While...End While) - monitors condition, loops accordingly
until (Do While/Until...Loop) - loops while or until a set parameter is met
The Do While and While loops are essentially the same, but the While loop checks for the condition before the loop is initiated and the Do While loop checks for the condition after the loop has finished
No comments:
Post a Comment