Java has three main types of loops:

Loop Type Use Case
for Known number of repetitions
while Unknown repetitions, check before each iteration
do-while Similar to while, but always runs at least once

1. For Loop

2. While Loop

3. Do-while Loop

4. Loop Control: break and continue