Yurttas/PL/OOL/Java/F/03/01/E01.java
Jump to navigation
Jump to search
1/**
2 * Copyright(C) 1998
3 * All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for EDUCATIONAL purposes
7 * and without fee is hereby granted provided that this
8 * copyright notice appears in all copies.
9 *
10 * @date : January 1, 1998.
11 * @author : Salih Yurttas.
12 */
13
14
15public class E01 {
16
17 private final static int N=4;
18
19 public static void main(String[] args) {
20 int[] list = new int[N];
21
22 try {
23 for(int i=0; i<N; i++)
24 list[i] = i;
25
26 System.out.println();
27
28 for(int i=0; i<=N; i++)
29 System.out.println(list[i]);
30 }
31 catch(ArrayIndexOutOfBoundsException e) {
32 System.err.println("Caught ArrayIndexOutOfBoundsException: " +
33 e.getMessage());
34 }
35 }
36
37}