Yurttas/PL/OOL/Java/F/03/01/E10.java

From ZCubes Wiki
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
15import java.io.*;
16
17public class E10 {
18
19  private final static int N=4;
20
21  public static void main(String[] args)
22    throws IOException
23  {
24    int[] list = new int[N];
25
26    try {
27      for(int i=0; i<N; i++) {
28        DataInputStream dIS = new DataInputStream(System.in);
29        BufferedReader r = new BufferedReader(new InputStreamReader(dIS));
30        String s = r.readLine();
31        list[i] = Integer.parseInt(s);
32      }
33
34      System.out.println();
35
36      for(int i=0; i<=N; i++)
37        System.out.println(list[i]);
38    }
39    catch(ArrayIndexOutOfBoundsException e) {
40      System.err.println("Caught ArrayIndexOutOfBoundsException: " +
41                         e.getMessage());
42    }
43  }
44
45}