FileDocCategorySizeDatePackage
ForDemo.javaAPI DocExample301Tue Dec 12 18:58:12 GMT 2000None

ForDemo.java

public class ForDemo {
    public static void main(String[] args) {
        int[] arrayOfInts = { 32, 87, 3, 589, 12, 1076, 2000, 8, 622, 127 };

        for (int i = 0; i < arrayOfInts.length; i++) {
            System.out.print(arrayOfInts[i] + " ");
        }
        System.out.println();
    }
}