public class Sep2 { public static void main(String[] args) { int i = 5; int j = 0; int k = 29; k = i/j; // comment this out, and uncomment the code that follows /* try { k = i/j; } catch (ArithmeticException e) { System.out.println("You can't divide by zero."); } */ System.out.println("The value of "+i+" divided by "+j+" is "+k); return; } }