Yurttas/PL/OOL/Java/F/03/01/E13.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
15import java.io.*;
16
17public class E13 {
18
19 private final static int N=4;
20
21 public static void main(String[] args) {
22 int[] list = new int[N];
23
24 try {
25 for(int i=0; i<N; i++) {
26 DataInputStream dIS = new DataInputStream(System.in);
27 BufferedReader r = new BufferedReader(new InputStreamReader(dIS));
28 String s = r.readLine();
29 list[i] = Integer.parseInt(s);
30 }
31
32 System.out.println();
33
34 for(int i=0; i<=N; i++)
35 System.out.println(list[i]);
36 }
37 catch(ArrayIndexOutOfBoundsException e) {
38 System.err.println("Caught ArrayIndexOutOfBoundsException: " +
39 e.getMessage());
40 }
41 catch(NumberFormatException e) {
42 System.err.println("Caught NumberFormatException: " +
43 e.getMessage());
44 }
45 catch(IOException e) {
46 System.err.println("Caught IOException: " +
47 e.getMessage());
48 }
49 finally {
50 System.err.println("done!");
51 }
52 }
53
54}