We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
importjava.io.*;importjava.util.*;publicclassSolution{publicstaticvoidmain(String[]args){/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */Scannersc=newScanner(System.in);try{intx=sc.nextInt();inty=sc.nextInt();intres=x/y;System.out.println(res);}catch(InputMismatchExceptionime){System.out.println("java.util.InputMismatchException");}catch(ArithmeticExceptionae){System.out.println("java.lang.ArithmeticException: / by zero");}finally{sc.close();}}}
Java Exception Handling (Try-catch)
You are viewing a single comment's thread. Return to all comments →
done under Java 8