public class LoopExamples {
public static void main(String[] args) {
// while
int i = 0;
while (i < 3) {
System.out.println("while: " + i);
i++;
}
// do-while
int j = 0;
do {
System.out.println("do-while: " + j);
j++;
} while (j < 3);
// for
for (int k = 0; k < 3; k++) {
System.out.println("for: " + k);
}
// foreach
for (String name : List.of("Ann", "Bob", "Cat")) {
System.out.println("foreach: " + name);
}
}
}

