+ 4
For loop runs itself a certain amount of times.
While loop runs as long as its condition is true. It first checks if the condition is true and then if it is, it runs itself.
Do-while is basically the same as while loop, but it first runs itself and then checks the condition.