For with i

for (int i = 0; i < 20; i++) {
  // code block to be executed
}

For Each

for (int i : mylist) {
  // code block to be executed
}