class P13_1DArray { public static void main(String[] args) { int[] arr; // int[] is the array type; a is the array name // int arr[] is also okay, but not welcome by Java fans arr = new int[5]; //create the array arr[0] = 3; arr[1] = 25; for (int i=0;i