Java - ArithmeticException Program

  1. // ArithmeticException    
  2.     
  3. class ArithEx    
  4. {    
  5.    public static void main(String args[])    
  6.    {    
  7.       try    
  8.         {    
  9.            int a=50, b=0;    
  10.            int c=a/b;    
  11.            System.out.println ("Result = " + c);    
  12.          }    
  13.           catch(ArithmeticException e)    
  14.            {    
  15.               System.out.println ("\nArithmetic Exception: You can't divide 0(zero)");    
  16.            }    
  17.    }