The Java Program: Performance3.java

  1 class Performance3 {
  2    public static void main (String args[]) {
  3       int [] ia = new int [400000];
  4       for (int i=0; i<ia.length; i++) {
  5          try {
  6             ia[i]=i;
  7          } catch (Exception e) {
  8          }
  9       }
 10    }
 11 }