Java For Loop And ForEach Loop Example
Chapter:
Control Statements
Last Updated:
03-09-2016 12:20:44 UTC
Program:
/* ............... START ............... */
public class JavaForAndForEachLoops {
public static void main(String[] args) {
int[] intary = { 1, 2, 3, 4 };
forDisplay(intary);
foreachDisplay(intary);
}
public static void forDisplay(int[] a) {
System.out.println("Display an array using for loop");
for (int i = 0; i < a.length; i++) {
System.out.print(a[i] + " ");
}
System.out.println();
}
public static void foreachDisplay(int[] data) {
System.out.println("Display an array using for each loop");
for (int a : data) {
System.out.print(a + " ");
}
}
}
/* ............... END ............... */
Output
Display an array using for loop
1 2 3 4
Display an array using for each loop
1 2 3 4
Tags
For Loop And ForEach Loop Example, Control Statements, Java