// Example 3.2: attempt to divide an int by zero

public class DivideByIntegerZero{
   public static void main(String [] args) {
      int i, j = 0;
      i = 3 / j;
      System.out.println("The value of i is  " + i);
   }
}
